summaryrefslogtreecommitdiffstats
path: root/Lib/wsgiref
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-06-09 19:43:25 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-06-09 19:43:25 (GMT)
commit2007d4e89226e07d276b7245aa6b86a556d10214 (patch)
treeb97478e52d3ac021aa08ef8434a7bdb4f8c9e27d /Lib/wsgiref
parente55848695347c67effeb08aedcf2ce3d256524cd (diff)
downloadcpython-2007d4e89226e07d276b7245aa6b86a556d10214.zip
cpython-2007d4e89226e07d276b7245aa6b86a556d10214.tar.gz
cpython-2007d4e89226e07d276b7245aa6b86a556d10214.tar.bz2
Remove unused variable
Diffstat (limited to 'Lib/wsgiref')
-rw-r--r--Lib/wsgiref/simple_server.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/wsgiref/simple_server.py b/Lib/wsgiref/simple_server.py
index 1a892da..0e4293a 100644
--- a/Lib/wsgiref/simple_server.py
+++ b/Lib/wsgiref/simple_server.py
@@ -184,7 +184,6 @@ def make_server(
if __name__ == '__main__':
- server_address = ('', 8000)
httpd = make_server('', 8000, demo_app)
sa = httpd.socket.getsockname()
print "Serving HTTP on", sa[0], "port", sa[1], "..."