このサイトはJavaScriptを使用しています
ホーム
ヘルプ
サインイン
ben
/
earwigbot
ミラー元
https://github.com/earwig/earwigbot
ウォッチ
1
スター
1
フォーク
0
コード
リリース
4
アクティビティ
ソースを参照
Fix small bug in shutdown code
tags/v0.1^2
Ben Kurtovic
12年前
親
c3fa92269d
コミット
08fb35eefe
2個のファイルの変更
、
2行の追加
、
2行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+1
-1
earwigbot/bot.py
+1
-1
earwigbot/util.py
+ 1
- 1
earwigbot/bot.py
ファイルの表示
@@ -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
ファイルの表示
@@ -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__":
書き込み
プレビュー
読み込み中…
キャンセル
保存