mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Add .__name__ after type(e)
This commit is contained in:
parent
5e24471469
commit
65ca713ff5
@ -151,7 +151,7 @@ class MatrixFederationHttpClient(object):
|
||||
destination,
|
||||
method,
|
||||
url_bytes,
|
||||
type(e). __name__,
|
||||
type(e).__name__,
|
||||
_flatten_response_never_received(e),
|
||||
)
|
||||
|
||||
@ -475,4 +475,4 @@ def _flatten_response_never_received(e):
|
||||
for f in e.reasons
|
||||
)
|
||||
else:
|
||||
return "%s: %s" % (type(e), e.message,)
|
||||
return "%s: %s" % (type(e).__name__, e.message,)
|
||||
|
Loading…
Reference in New Issue
Block a user