diff options
author | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2006-11-28 17:16:59 -0500 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2006-11-28 17:16:59 -0500 |
commit | b874d283f20be576c253187aa8541295434bdea3 (patch) | |
tree | 19212573df775856931a5e904135bcde1292d71b /examples | |
parent | 88c3448a705e0f6bc23fce1ac5881caa87d6c26e (diff) |
fix python shebang line
Correct the python shebang line so that python can be found otuside of
/usr/bin.
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/locking.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/locking.py b/examples/locking.py index c70230f6..621d148c 100755 --- a/examples/locking.py +++ b/examples/locking.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python # Simple program to test locking; will acquire a lock on the hal device # object representing the computer. |