Merge "Fix WaitTimeout string representations"

This commit is contained in:
Jenkins 2017-02-03 12:39:56 +00:00 committed by Gerrit Code Review
commit 7df76e162a
1 changed files with 6 additions and 1 deletions

View File

@ -68,7 +68,12 @@ class WaitTimeout(Exception, eventlet.TimeoutError):
TimeoutError is raised, test runner stops and exits while it still has test
cases scheduled for execution.
"""
pass
def __str__(self):
return Exception.__str__(self)
def __repr__(self):
return Exception.__repr__(self)
@removals.remove(