strings.join() expects iterable of strings
parent
859fbd4423
commit
0db52d43fa
|
@ -148,7 +148,7 @@ class MatrixFederationHttpClient(object):
|
||||||
|
|
||||||
if hasattr(e, "reasons"):
|
if hasattr(e, "reasons"):
|
||||||
reasons = ", ".join(
|
reasons = ", ".join(
|
||||||
f.value.message
|
str(f.value.message)
|
||||||
for f in e.reasons
|
for f in e.reasons
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue