diff options
author | Guido van Rossum <guido@python.org> | 1997-02-18 16:55:33 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-02-18 16:55:33 (GMT) |
commit | 152f9d966329e6e5de2047a844a9d53ce7786572 (patch) | |
tree | cb5172798134504d3452ea74e7b04cd207ea92b0 /Lib/cgi.py | |
parent | 01094e408939689fc8df539c57ef994ca2c690e4 (diff) | |
download | cpython-152f9d966329e6e5de2047a844a9d53ce7786572.zip cpython-152f9d966329e6e5de2047a844a9d53ce7786572.tar.gz cpython-152f9d966329e6e5de2047a844a9d53ce7786572.tar.bz2 |
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
@@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/local/bin/python """Support module for CGI (Common Gateway Interface) scripts. |