diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-18 10:41:46 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-18 10:41:46 +0000 |
commit | 0db52d43fa41526b83d0c70141c43bfd89388820 (patch) | |
tree | 7095149a76a5ff20619d6eda0586b8a4de256a70 /synapse/http | |
parent | s/self._clock/self.clock/ (diff) | |
download | synapse-0db52d43fa41526b83d0c70141c43bfd89388820.tar.xz |
strings.join() expects iterable of strings
Diffstat (limited to 'synapse/http')
-rw-r--r-- | synapse/http/matrixfederationclient.py | 2 |
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: |