1
0
Fork 0

Propagate unexpected exceptions in the wait exception handler

Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com>
This commit is contained in:
Jaroslav Škarvada 2024-04-02 19:55:09 +02:00
parent fcb297514c
commit 1700a98d48
No known key found for this signature in database
GPG key ID: D8E1C00E076E840B

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