strings.join() expects iterable of strings

This commit is contained in:
Erik Johnston 2015-02-18 10:41:46 +00:00
parent 859fbd4423
commit 0db52d43fa

View File

@ -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: