mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-06 16:06:52 +00:00
No need for the exception variable
This commit is contained in:
parent
c0380402bc
commit
482a2ad122
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue