This commit is contained in:
Miroslav Stampar
2026-01-28 20:47:00 +01:00
parent 7767999116
commit 8a97346564
3 changed files with 4 additions and 4 deletions

View File

@@ -191,7 +191,7 @@ def runThreads(numThreads, threadFunction, cleanupFunction=None, forwardExceptio
while True:
alive = False
for thread in threads:
if thread.isAlive():
if thread.is_alive():
alive = True
break
if not alive: