Add .__name__ after type(e)

This commit is contained in:
Erik Johnston 2015-02-18 10:51:32 +00:00
parent 5e24471469
commit 65ca713ff5

View File

@ -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,)