Commit 10625838 authored by Denis Bilenko's avatar Denis Bilenko

minor change to Timeout.__str__

parent 85663044
......@@ -262,6 +262,8 @@ class Timeout(BaseException):
"""
if self.exception is None:
return ''
elif self.exception is False:
return '(silent)'
else:
return str(self.exception)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment