mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 18:44:51 -04:00
strings.join() expects iterable of strings
This commit is contained in:
parent
859fbd4423
commit
0db52d43fa
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue