Skip to content

Commit

Permalink
bugfix: replaced isAlive call for is_alive
Browse files Browse the repository at this point in the history
  • Loading branch information
RRua committed Feb 2, 2022
1 parent 2c7a66b commit 981f144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion droidbot/droidbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def start(self):

def stop(self):
self.enabled = False
if self.timer and self.timer.isAlive():
if self.timer and self.timer.is_alive():
self.timer.cancel()
if self.env_manager:
self.env_manager.stop()
Expand Down

0 comments on commit 981f144

Please sign in to comment.