Parcourir la source

Fix small bug in shutdown code

tags/v0.1^2
Ben Kurtovic il y a 12 ans
Parent
révision
08fb35eefe
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +1
    -1
      earwigbot/bot.py
  2. +1
    -1
      earwigbot/util.py

+ 1
- 1
earwigbot/bot.py Voir le fichier

@@ -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

+ 1
- 1
earwigbot/util.py Voir le fichier

@@ -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__":


Chargement…
Annuler
Enregistrer