summary refs log tree commit diff
path: root/synapse/handlers/e2e_keys.py
diff options
context:
space:
mode:
authorAmber Brown <hawkowl@atleastfornow.net>2018-09-27 23:39:45 +1000
committerGitHub <noreply@github.com>2018-09-27 23:39:45 +1000
commita512e637ac0df0d32559af64418691a2829800a6 (patch)
treea7c14c4053e9a051d13b53c5c03391183e64ef34 /synapse/handlers/e2e_keys.py
parentRun our oldest supported configuration in CI (#3952) (diff)
parentUpdate 3970.bugfix (diff)
downloadsynapse-a512e637ac0df0d32559af64418691a2829800a6.tar.xz
Merge pull request #3970 from schnuffle/develop-py3
Replaced all occurences of e.message with str(e)
Diffstat (limited to 'synapse/handlers/e2e_keys.py')
-rw-r--r--synapse/handlers/e2e_keys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/e2e_keys.py b/synapse/handlers/e2e_keys.py
index 578e9250fb..9dc46aa15f 100644
--- a/synapse/handlers/e2e_keys.py
+++ b/synapse/handlers/e2e_keys.py
@@ -341,7 +341,7 @@ class E2eKeysHandler(object):
 def _exception_to_failure(e):
     if isinstance(e, CodeMessageException):
         return {
-            "status": e.code, "message": e.message,
+            "status": e.code, "message": str(e),
         }
 
     if isinstance(e, NotRetryingDestination):