From f50b660451cfc24217a07acfccb6ed0c921615a6 Mon Sep 17 00:00:00 2001 From: ajmandourah Date: Mon, 3 Feb 2020 06:47:23 +0100 Subject: [PATCH] isAlive is now deprecated --- mumbleBot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mumbleBot.py b/mumbleBot.py index 2b6fc23..1cc2c3a 100644 --- a/mumbleBot.py +++ b/mumbleBot.py @@ -765,7 +765,7 @@ class MumbleBot: # Main loop of the Bot def loop(self): raw_music = "" - while not self.exit and self.mumble.isAlive(): + while not self.exit and self.mumble.is_alive(): while self.mumble.sound_output.get_buffer_size() > 0.5 and not self.exit: # If the buffer isn't empty, I cannot send new music part, so I wait