From: Guido van Rossum Date: Tue, 3 Oct 2000 13:51:09 +0000 (+0000) Subject: Undo Ping's change. X-Git-Tag: v2.0c1~147 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5191463276a83fee8a16bfb2867d27efdef4eaa3;p=python 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. --- diff --git a/Lib/cgi.py b/Lib/cgi.py index 1e1b2b771f..dd5bee6a9d 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.