diff --git a/earwigbot/bot.py b/earwigbot/bot.py index 1f23d5b..6f98690 100644 --- a/earwigbot/bot.py +++ b/earwigbot/bot.py @@ -150,7 +150,7 @@ class Bot(object): If given, 'msg' will be used as our quit message. """ - self.logger.info("Shutting down bot") + self.logger.info("Stopping bot") with self.component_lock: self._stop_irc_components(msg) self._keep_looping = False diff --git a/earwigbot/util.py b/earwigbot/util.py index 51ad463..d5f48cf 100755 --- a/earwigbot/util.py +++ b/earwigbot/util.py @@ -70,7 +70,7 @@ def main(): except KeyboardInterrupt: pass finally: - if not bot._keep_looping: # Indicates bot has already been stopped + if bot._keep_looping: # Indicates bot hasn't already been stopped bot.stop() if __name__ == "__main__":