summaryrefslogtreecommitdiffstats
path: root/Lib/CGIHTTPServer.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-08-20 20:07:10 (GMT)
committerGuido van Rossum <guido@python.org>2002-08-20 20:07:10 (GMT)
commite3ec296df8a4abcf7b6808ed44bc67dc8ea0bd5c (patch)
tree3fd20c477cdbdb77ae889b2c90d4c0e59bea9558 /Lib/CGIHTTPServer.py
parent290f1870f121a60d267f52fa420d10a1187b8a4d (diff)
downloadcpython-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.py2
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")