From: Dan Langille Date: Wed, 12 Sep 2007 20:59:03 +0000 (+0000) Subject: Replace #!/usr/bin/python with the more portable #!/usr/bin/env X-Git-Tag: Release-7.0.0~5689 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5a24d528fdf22c8e8a3f9b88b41c433040202bf4;p=bacula%2Fbacula Replace #!/usr/bin/python with the more portable #!/usr/bin/env git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5536 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/regress/endtime b/regress/endtime index faf419f70d..0502fec376 100755 --- a/regress/endtime +++ b/regress/endtime @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python from time import time as now t = now() diff --git a/regress/starttime b/regress/starttime index 5c2bd411c6..e6aa3ea6a9 100755 --- a/regress/starttime +++ b/regress/starttime @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python from time import time as now fn = open('time.out', 'w+')