diff options
author | Guido van Rossum <guido@python.org> | 1997-02-18 16:55:33 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-02-18 16:55:33 +0000 |
commit | 152f9d966329e6e5de2047a844a9d53ce7786572 (patch) | |
tree | cb5172798134504d3452ea74e7b04cd207ea92b0 /Lib/cgi.py | |
parent | 01094e408939689fc8df539c57ef994ca2c690e4 (diff) | |
download | cpython-git-152f9d966329e6e5de2047a844a9d53ce7786572.tar.gz |
Put back #! /usr/local/bin/python. For cgi scripts, /usr/bin/env is
unlikely to find a python binary, as /usr/local/bin is usually not on
the default search path.
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-x | Lib/cgi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/cgi.py b/Lib/cgi.py index 34a6c6d702..6cddfbafc3 100755 --- a/Lib/cgi.py +++ b/Lib/cgi.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/local/bin/python """Support module for CGI (Common Gateway Interface) scripts. |