瀏覽代碼

Fix title thing again.

tags/v0.1^2
Ben Kurtovic 12 年之前
父節點
當前提交
031660bf57
共有 1 個檔案被更改,包括 2 行新增1 行删除
  1. +2
    -1
      bot/tasks/afc_statistics.py

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

@@ -270,9 +270,10 @@ class Task(BaseTask):
if not title:
return

title = title.replace("_", " ")
query = "SELECT page_id, page_modify_oldid FROM page WHERE page_title = ?"
with self.conn.cursor() as cursor:
cursor.execute(query, (title.replace("_", " "),))
cursor.execute(query, (title,))
try:
pageid, oldid = cursor.fetchall()[0]
except IndexError:


Loading…
取消
儲存