Il sito funziona meglio con JavaScript.
Home
Aiuto
Accedi
ben
/
earwigbot
mirror da
https://github.com/earwig/earwigbot
Segui
1
Vota
1
Forka
0
Codice
Rilasci
4
Attività
Sfoglia il codice sorgente
Fix small bug in shutdown code
tags/v0.1^2
Ben Kurtovic
12 anni fa
parent
c3fa92269d
commit
08fb35eefe
2 ha cambiato i file
con
2 aggiunte
e
2 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+1
-1
earwigbot/bot.py
+1
-1
earwigbot/util.py
+ 1
- 1
earwigbot/bot.py
Vedi File
@@ -150,7 +150,7 @@ class Bot(object):
If given, 'msg' will be used as our quit message.
"""
self.logger.info("S
hut
ting
down
bot")
self.logger.info("St
opp
ing bot")
with self.component_lock:
self._stop_irc_components(msg)
self._keep_looping = False
+ 1
- 1
earwigbot/util.py
Vedi File
@@ -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 has
n't
already been stopped
bot.stop()
if __name__ == "__main__":
Scrivi
Anteprima
Caricamento…
Annulla
Salva