diff options
author | Guido van Rossum <guido@python.org> | 2002-08-20 20:07:10 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-08-20 20:07:10 (GMT) |
commit | e3ec296df8a4abcf7b6808ed44bc67dc8ea0bd5c (patch) | |
tree | 3fd20c477cdbdb77ae889b2c90d4c0e59bea9558 /Lib/CGIHTTPServer.py | |
parent | 290f1870f121a60d267f52fa420d10a1187b8a4d (diff) | |
download | cpython-e3ec296df8a4abcf7b6808ed44bc67dc8ea0bd5c.zip cpython-e3ec296df8a4abcf7b6808ed44bc67dc8ea0bd5c.tar.gz cpython-e3ec296df8a4abcf7b6808ed44bc67dc8ea0bd5c.tar.bz2 |
Typo repair. Please include in any backports.
Diffstat (limited to 'Lib/CGIHTTPServer.py')
-rw-r--r-- | Lib/CGIHTTPServer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/CGIHTTPServer.py b/Lib/CGIHTTPServer.py index eb1ee19..6c3e09e 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") |