Browse Source

Fix small bug in shutdown code

tags/v0.1^2
Ben Kurtovic 12 years ago
parent
commit
08fb35eefe
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      earwigbot/bot.py
  2. +1
    -1
      earwigbot/util.py

+ 1
- 1
earwigbot/bot.py View File

@@ -150,7 +150,7 @@ class Bot(object):


If given, 'msg' will be used as our quit message. 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: with self.component_lock:
self._stop_irc_components(msg) self._stop_irc_components(msg)
self._keep_looping = False self._keep_looping = False

+ 1
- 1
earwigbot/util.py View File

@@ -70,7 +70,7 @@ def main():
except KeyboardInterrupt: except KeyboardInterrupt:
pass pass
finally: 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() bot.stop()


if __name__ == "__main__": if __name__ == "__main__":


Loading…
Cancel
Save