瀏覽代碼

Differentiate between completely blank pages and nonexistant or unretrievable pages.

tags/v0.1^2
Ben Kurtovic 12 年之前
父節點
當前提交
5088315db4
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      bot/tasks/afc_statistics.py

+ 2
- 2
bot/tasks/afc_statistics.py 查看文件

@@ -295,7 +295,7 @@ class Task(BaseTask):
which are then saved to our database.
"""
content = self.get_content(title)
if not content:
if content is None:
msg = "Could not get page content for [[{0}]]".format(title)
self.logger.error(msg)
return
@@ -329,7 +329,7 @@ class Task(BaseTask):
is then updated.
"""
content = self.get_content(title)
if not content:
if content is None:
msg = "Could not get page content for [[{0}]]".format(title)
self.logger.error(msg)
return


Loading…
取消
儲存