diff options
author | Jon Wolk <jwolk@lindenlab.com> | 2008-06-18 22:22:23 +0000 |
---|---|---|
committer | Jon Wolk <jwolk@lindenlab.com> | 2008-06-18 22:22:23 +0000 |
commit | 852d36a2b771485485c059d5bc3284404046aae5 (patch) | |
tree | 0772cd5ca2faaad39efd5215ab29f53a0e4c1e9f /indra/lib/python | |
parent | 4e19c91811e8535e9035b57a1478ba2db059f35d (diff) |
Squeezing fix for DEV-16861: Tracebacks in backbone(multiagentchat) into release. 2 line change. Approved by josh
Diffstat (limited to 'indra/lib/python')
-rw-r--r-- | indra/lib/python/indra/ipc/llsdhttp.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/lib/python/indra/ipc/llsdhttp.py b/indra/lib/python/indra/ipc/llsdhttp.py index f5cb2c34d4..c45489643e 100644 --- a/indra/lib/python/indra/ipc/llsdhttp.py +++ b/indra/lib/python/indra/ipc/llsdhttp.py @@ -52,6 +52,9 @@ request_ = suite.request_ for x in httpc.status_to_error_map.itervalues(): globals()[x.__name__] = x +for x in (httpc.ConnectionError,): + globals()[x.__name__] = x + def postFile(url, filename): f = open(filename) |