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

DRTVWR-418: Fix minor error in forwarding shutdown_request() call.

parent 4aae3e8e
No related branches found
No related tags found
No related merge requests found
......@@ -291,7 +291,7 @@ def handle_error(self, request, client_address):
def shutdown_request(self, *args, **kwds):
try:
# 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:
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