mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-17 07:21:37 +01: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']
|
errcode = jsonBody['errcode']
|
||||||
error = jsonBody['error']
|
error = jsonBody['error']
|
||||||
return MatrixCodeMessageException(response.code, error, errcode)
|
return MatrixCodeMessageException(response.code, error, errcode)
|
||||||
except (ValueError, KeyError) as e:
|
except (ValueError, KeyError):
|
||||||
return CodeMessageException(response.code, body)
|
return CodeMessageException(response.code, body)
|
||||||
|
|
||||||
# XXX: FIXME: This is horribly copy-pasted from matrixfederationclient.
|
# XXX: FIXME: This is horribly copy-pasted from matrixfederationclient.
|
||||||
|
|
Loading…
Reference in a new issue