Просмотр исходного кода

Fix, since we can't get low watch counts.

tags/v0.2
Ben Kurtovic 9 лет назад
Родитель
Сommit
9e45d32725
1 измененных файлов: 4 добавлений и 1 удалений
  1. +4
    -1
      earwigbot/commands/watchers.py

+ 4
- 1
earwigbot/commands/watchers.py Просмотреть файл

@@ -43,7 +43,10 @@ class Watchers(Command):
self.reply(data, msg.format(title))
return

watchers = page["watchers"]
if "watchers" in page:
watchers = page["watchers"]
else:
watchers = "<30"
plural = "" if watchers == 1 else "s"
msg = "\x0302{0}\x0F has \x02{1}\x0F watcher{2}."
self.reply(data, msg.format(title, watchers, plural))

Загрузка…
Отмена
Сохранить