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

View File

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