Skip to content
Snippets Groups Projects
Commit 852d36a2 authored by Jon Wolk's avatar Jon Wolk
Browse files

Squeezing fix for DEV-16861: Tracebacks in backbone(multiagentchat) into...

Squeezing fix for DEV-16861: Tracebacks in backbone(multiagentchat) into release.  2 line change.  Approved by josh
parent 4e19c918
No related branches found
No related tags found
No related merge requests found
...@@ -52,6 +52,9 @@ request_ = suite.request_ ...@@ -52,6 +52,9 @@ request_ = suite.request_
for x in httpc.status_to_error_map.itervalues(): for x in httpc.status_to_error_map.itervalues():
globals()[x.__name__] = x globals()[x.__name__] = x
for x in (httpc.ConnectionError,):
globals()[x.__name__] = x
def postFile(url, filename): def postFile(url, filename):
f = open(filename) f = open(filename)
......
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