From: Guido van Rossum Date: Tue, 20 Aug 2002 20:07:10 +0000 (+0000) Subject: Typo repair. Please include in any backports. X-Git-Tag: v2.3c1~4380 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3ec296df8a4abcf7b6808ed44bc67dc8ea0bd5c;p=python Typo repair. Please include in any backports. --- diff --git a/Lib/CGIHTTPServer.py b/Lib/CGIHTTPServer.py index eb1ee198b3..6c3e09ea9b 100644 --- a/Lib/CGIHTTPServer.py +++ b/Lib/CGIHTTPServer.py @@ -182,7 +182,7 @@ class CGIHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): for k in ('QUERY_STRING', 'REMOTE_HOST', 'CONTENT_LENGTH', 'HTTP_USER_AGENT', 'HTTP_COOKIE'): env.setdefault(k, "") - so.environ.update(env) + os.environ.update(env) self.send_response(200, "Script output follows")