diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2016-12-06 16:20:43 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2016-12-06 16:20:43 -0500 |
commit | 40b1913af318f58f2a56e4bf4049437748405033 (patch) | |
tree | 6e426ef7d752d7bb0d283056eb2d3e1186f70cfa /indra/llcorehttp | |
parent | 4aae3e8eb4e6872b62e15b721ee7f6c34b80d3c8 (diff) |
DRTVWR-418: Fix minor error in forwarding shutdown_request() call.
Diffstat (limited to 'indra/llcorehttp')
-rwxr-xr-x | indra/llcorehttp/tests/test_llcorehttp_peer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcorehttp/tests/test_llcorehttp_peer.py b/indra/llcorehttp/tests/test_llcorehttp_peer.py index b91cd6bcb4..4dfb60bddb 100755 --- a/indra/llcorehttp/tests/test_llcorehttp_peer.py +++ b/indra/llcorehttp/tests/test_llcorehttp_peer.py @@ -291,7 +291,7 @@ class Server(HTTPServer): 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 |