From 5d1518ae5d899f5fb213d56c2c01d8c700ecc67d Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 6 Oct 2013 21:18:13 -0400 Subject: [PATCH] info(), not log() --- tasks/afc_dailycats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/afc_dailycats.py b/tasks/afc_dailycats.py index 06a9e70..16cb6fa 100644 --- a/tasks/afc_dailycats.py +++ b/tasks/afc_dailycats.py @@ -57,6 +57,6 @@ class AFCDailyCats(Task): page = self.site.get_page(self.prefix + suffix) if page.exists == page.PAGE_MISSING: 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: self.logger.debug("Skipping [[{0}]], exists".format(page.title))