diff options
author | David Baker <dave@matrix.org> | 2017-05-03 11:02:59 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2017-05-03 11:02:59 +0100 |
commit | 482a2ad12239cfcc4886e33a0b3ac5e16196e03a (patch) | |
tree | 3a760934793effcd32f346743c4233a972bc2c09 /synapse/http/client.py | |
parent | List caught expection types (diff) | |
download | synapse-482a2ad12239cfcc4886e33a0b3ac5e16196e03a.tar.xz |
No need for the exception variable
Diffstat (limited to 'synapse/http/client.py')
-rw-r--r-- | synapse/http/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/client.py b/synapse/http/client.py index f8dff37d24..9cf797043a 100644 --- a/synapse/http/client.py +++ b/synapse/http/client.py @@ -260,7 +260,7 @@ class SimpleHttpClient(object): errcode = jsonBody['errcode'] error = jsonBody['error'] return MatrixCodeMessageException(response.code, error, errcode) - except (ValueError, KeyError) as e: + except (ValueError, KeyError): return CodeMessageException(response.code, body) # XXX: FIXME: This is horribly copy-pasted from matrixfederationclient. |