summary refs log tree commit diff
path: root/synapse/http
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-02-18 10:41:46 +0000
committerErik Johnston <erik@matrix.org>2015-02-18 10:41:46 +0000
commit0db52d43fa41526b83d0c70141c43bfd89388820 (patch)
tree7095149a76a5ff20619d6eda0586b8a4de256a70 /synapse/http
parents/self._clock/self.clock/ (diff)
downloadsynapse-0db52d43fa41526b83d0c70141c43bfd89388820.tar.xz
strings.join() expects iterable of strings
Diffstat (limited to 'synapse/http')
-rw-r--r--synapse/http/matrixfederationclient.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/matrixfederationclient.py b/synapse/http/matrixfederationclient.py
index 454c3d4ab1..b5e201b5f1 100644
--- a/synapse/http/matrixfederationclient.py
+++ b/synapse/http/matrixfederationclient.py
@@ -148,7 +148,7 @@ class MatrixFederationHttpClient(object):
 
                 if hasattr(e, "reasons"):
                     reasons = ", ".join(
-                        f.value.message
+                        str(f.value.message)
                         for f in e.reasons
                     )
                 else: