summaryrefslogtreecommitdiff
path: root/indra/llcorehttp
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2016-12-06 16:19:32 -0500
committerNat Goodspeed <nat@lindenlab.com>2016-12-06 16:19:32 -0500
commit43c9a7d706d3cdf72f861f89e9968342513d55b8 (patch)
tree9b62735db3ca0ff1537b3a58286bfbac50ce38b1 /indra/llcorehttp
parente47b178fb9d40655faa837ca32f72a78753f63fb (diff)
Fix minor error in forwarding shutdown_request() call.
Diffstat (limited to 'indra/llcorehttp')
-rwxr-xr-xindra/llcorehttp/tests/test_llcorehttp_peer.py2
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 a4783c42f2..59acfc39c4 100755
--- a/indra/llcorehttp/tests/test_llcorehttp_peer.py
+++ b/indra/llcorehttp/tests/test_llcorehttp_peer.py
@@ -287,7 +287,7 @@ class Server(ThreadingMixIn, 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