0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-30 16:38:21 +02:00

Remove debugging

This commit is contained in:
David Baker 2017-04-26 12:36:26 +01:00
parent 82ae0238f9
commit 5fd12dce01

View file

@ -260,8 +260,7 @@ class SimpleHttpClient(object):
errcode = jsonBody['errcode']
error = jsonBody['error']
return MatrixCodeMessageException(response.code, error, errcode)
except e:
print e
except:
return CodeMessageException(response.code, body)
# XXX: FIXME: This is horribly copy-pasted from matrixfederationclient.