Ver código fonte

Use logger; bugfix.

pull/15/head
Ben Kurtovic 11 anos atrás
pai
commit
d951b2a8ec
1 arquivos alterados com 4 adições e 1 exclusões
  1. +4
    -1
      tasks/afc_dailycats.py

+ 4
- 1
tasks/afc_dailycats.py Ver arquivo

@@ -55,5 +55,8 @@ class AFCDailyCats(Task):

def make_cat(self, suffix, word):
page = self.site.get_page(self.prefix + suffix)
if page.exists() == page.PAGE_MISSING:
if page.exists == page.PAGE_MISSING:
page.edit(self.content, self.summary.format(word))
self.logger.log("Creating [[{0}]]".format(page.title))
else:
self.logger.debug("Skipping [[{0}]], exists".format(page.title))

Carregando…
Cancelar
Salvar