1
0
Fork 0

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:
Jaroslav Škarvada 2024-05-23 13:41:24 +02:00 committed by GitHub
commit dcce8e3efa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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