diff options
author | Ryan Williams <rdw@lindenlab.com> | 2008-06-02 23:25:14 +0000 |
---|---|---|
committer | Ryan Williams <rdw@lindenlab.com> | 2008-06-02 23:25:14 +0000 |
commit | 5f002b429bfba9cf51a92d529d067d9cc6b9160c (patch) | |
tree | ae34cb9884aee120401676cc916339beb4a3b9f7 /indra | |
parent | af8753b6c64b293f418d799406b5fae0ce8039b7 (diff) |
svn merge -r88806:88810 svn+ssh://svn.lindenlab.com/svn/linden/branches/escrow/liquid-banjo-05 into release
Diffstat (limited to 'indra')
-rw-r--r-- | indra/lib/python/indra/ipc/llsdhttp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/lib/python/indra/ipc/llsdhttp.py b/indra/lib/python/indra/ipc/llsdhttp.py index 12d759d3a0..f5cb2c34d4 100644 --- a/indra/lib/python/indra/ipc/llsdhttp.py +++ b/indra/lib/python/indra/ipc/llsdhttp.py @@ -48,7 +48,8 @@ put_ = suite.put_ request = suite.request request_ = suite.request_ -for x in (httpc.ConnectionError, httpc.NotFound, httpc.Forbidden): +# import every httpc error exception into our namespace for convenience +for x in httpc.status_to_error_map.itervalues(): globals()[x.__name__] = x |