Explorar el Código

Use logger; bugfix.

pull/15/head
Ben Kurtovic hace 11 años
padre
commit
d951b2a8ec
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      tasks/afc_dailycats.py

+ 4
- 1
tasks/afc_dailycats.py Ver fichero

@@ -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))

Cargando…
Cancelar
Guardar