Browse Source

info(), not log()

pull/15/head
Ben Kurtovic 11 years ago
parent
commit
5d1518ae5d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tasks/afc_dailycats.py

+ 1
- 1
tasks/afc_dailycats.py View File

@@ -57,6 +57,6 @@ class AFCDailyCats(Task):
page = self.site.get_page(self.prefix + suffix) 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)) page.edit(self.content, self.summary.format(word))
self.logger.log("Creating [[{0}]]".format(page.title))
self.logger.info("Creating [[{0}]]".format(page.title))
else: else:
self.logger.debug("Skipping [[{0}]], exists".format(page.title)) self.logger.debug("Skipping [[{0}]], exists".format(page.title))

Loading…
Cancel
Save