]> granicus.if.org Git - python/commitdiff
Put back #! /usr/local/bin/python. For cgi scripts, /usr/bin/env is
authorGuido van Rossum <guido@python.org>
Tue, 18 Feb 1997 16:55:33 +0000 (16:55 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 18 Feb 1997 16:55:33 +0000 (16:55 +0000)
unlikely to find a python binary, as /usr/local/bin is usually not on
the default search path.

Lib/cgi.py

index 34a6c6d70268cc257d7faec8c3a45837fad285dd..6cddfbafc3a09f74c841e7ca351cf5c0f447450d 100755 (executable)
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/local/bin/python
 
 """Support module for CGI (Common Gateway Interface) scripts.