浏览代码

Fix typo in log message.

tags/v0.2
Ben Kurtovic 8 年前
父节点
当前提交
f91bbaec0f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      earwigbot/bot.py

+ 1
- 1
earwigbot/bot.py 查看文件

@@ -154,7 +154,7 @@ class Bot(object):
tasks.append(thread.name)
if tasks:
log = "The following commands or tasks will be killed: {0}"
self.logger.warn(log.format(" ".join(tasks)))
self.logger.warn(log.format(", ".join(tasks)))

@property
def is_running(self):


正在加载...
取消
保存