Merge pull request #617 from yarda/propagate-unexpected-exceptions-in-wait-exception-handler
Propagate unexpected exceptions in the wait exception handler
This commit is contained in:
commit
dcce8e3efa
1 changed files with 1 additions and 1 deletions
|
|
@ -447,7 +447,7 @@ class commands:
|
|||
def wait(self, terminate, time):
|
||||
try:
|
||||
return terminate.wait(time, False)
|
||||
except:
|
||||
except TypeError as e:
|
||||
return terminate.wait(time)
|
||||
|
||||
def get_size(self, s):
|
||||
|
|
|
|||
Loading…
Reference in a new issue