summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-02-18 16:55:33 (GMT)
committerGuido van Rossum <guido@python.org>1997-02-18 16:55:33 (GMT)
commit152f9d966329e6e5de2047a844a9d53ce7786572 (patch)
treecb5172798134504d3452ea74e7b04cd207ea92b0 /Lib
parent01094e408939689fc8df539c57ef994ca2c690e4 (diff)
downloadcpython-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')
-rwxr-xr-xLib/cgi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/cgi.py b/Lib/cgi.py
index 34a6c6d..6cddfba 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.