From 152f9d966329e6e5de2047a844a9d53ce7786572 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 18 Feb 1997 16:55:33 +0000 Subject: [PATCH] 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. --- Lib/cgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/cgi.py b/Lib/cgi.py index 34a6c6d7026..6cddfbafc3a 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.