Skip to content

Commit ea3d1c8

Browse files
committed
fixed deprecated isAlive in thread library
1 parent 9718830 commit ea3d1c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scxml4py/activity.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def __init__(self, theId, theEventQueue = None, theData = None):
5858
self.mThread = None
5959

6060
def start(self):
61-
if self.mThread and self.mThread.isAlive():
61+
if self.mThread and self.mThread.is_alive():
6262
logger.debug("Activity <%s> already started"%self)
6363
return
6464

0 commit comments

Comments
 (0)