diff options
author | Guido van Rossum <guido@python.org> | 2000-10-03 13:51:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-10-03 13:51:09 (GMT) |
commit | 5191463276a83fee8a16bfb2867d27efdef4eaa3 (patch) | |
tree | e7bc019a7693f0ae66985f0474db8c44f9b0a35d /Lib/cgi.py | |
parent | 099e534fa4cefb18b53ed0668f08dbd89deea78f (diff) | |
download | cpython-5191463276a83fee8a16bfb2867d27efdef4eaa3.zip cpython-5191463276a83fee8a16bfb2867d27efdef4eaa3.tar.gz cpython-5191463276a83fee8a16bfb2867d27efdef4eaa3.tar.bz2 |
Undo Ping's change.
CGI scripts should *not* use /usr/bin/env, since on systems that don't
come standard with Python installed, Python isn't on the default $PATH.
Too bad that this breaks on Linux, where Python is in /usr/bin which
is on the default path -- the point is that you must manually edit
your CGI scripts when you install them.
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. |