Sfoglia il codice sorgente

Fix typo in log message.

tags/v0.2
Ben Kurtovic 8 anni fa
parent
commit
f91bbaec0f
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      earwigbot/bot.py

+ 1
- 1
earwigbot/bot.py Vedi File

@@ -154,7 +154,7 @@ class Bot(object):
tasks.append(thread.name) tasks.append(thread.name)
if tasks: if tasks:
log = "The following commands or tasks will be killed: {0}" 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 @property
def is_running(self): def is_running(self):


Caricamento…
Annulla
Salva