Skip to content
Snippets Groups Projects
Commit 43c9a7d7 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

Fix minor error in forwarding shutdown_request() call.

parent e47b178f
No related branches found
No related tags found
No related merge requests found
...@@ -287,7 +287,7 @@ def handle_error(self, request, client_address): ...@@ -287,7 +287,7 @@ def handle_error(self, request, client_address):
def shutdown_request(self, *args, **kwds): def shutdown_request(self, *args, **kwds):
try: try:
# just forward to base-class method, but wrap in try/except # just forward to base-class method, but wrap in try/except
HTTPServer.shutdown_request(*args, **kwds) HTTPServer.shutdown_request(self, *args, **kwds)
except Exception as err: except Exception as err:
print >>sys.stderr, "Once more ignoring: %s" % err print >>sys.stderr, "Once more ignoring: %s" % err
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment