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.
This commit is contained in:
Guido van Rossum 1997-02-18 16:55:33 +00:00
parent 01094e4089
commit 152f9d9663
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/local/bin/python
"""Support module for CGI (Common Gateway Interface) scripts.