This commit is contained in:
2022-05-05 18:49:09 +02:00
parent e449199a25
commit a5ac10bf0f
+1 -1
View File
@@ -58,7 +58,7 @@ class Task(BaseTask):
def status(self):
if self.thread.ident is None:
return "ready"
if self.thread.isAlive():
if self.thread.is_alive():
return "running"
return "done"