瀏覽代碼

Use logger; bugfix.

pull/15/head
Ben Kurtovic 11 年之前
父節點
當前提交
d951b2a8ec
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. +4
    -1
      tasks/afc_dailycats.py

+ 4
- 1
tasks/afc_dailycats.py 查看文件

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

Loading…
取消
儲存