summary refs log tree commit diff
path: root/synapse/http/client.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2017-04-26 12:36:26 +0100
committerDavid Baker <dave@matrix.org>2017-04-26 12:36:26 +0100
commit5fd12dce013ad46f171dde10245d78a225b12387 (patch)
tree5dc32abf2d47b476b5f8c75557d5f508007f23ef /synapse/http/client.py
parentRevert accidental commit (diff)
downloadsynapse-5fd12dce013ad46f171dde10245d78a225b12387.tar.xz
Remove debugging
Diffstat (limited to '')
-rw-r--r--synapse/http/client.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/http/client.py b/synapse/http/client.py

index 6e0ddfa0f6..379ddcb540 100644 --- a/synapse/http/client.py +++ b/synapse/http/client.py
@@ -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.