Browse Source

lolk

tags/v0.1^2
Ben Kurtovic 12 years ago
parent
commit
3b9cc564a5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bot/tasks/afc_statistics.py

+ 1
- 1
bot/tasks/afc_statistics.py View File

@@ -100,7 +100,7 @@ class Task(BaseTask):
chart = "{{{0}|{1}}}".format(self.tl_header, chart_title)

query = "SELECT * FROM page JOIN row ON page_id = row_id WHERE row_chart = ?"
with self.conn(oursql.DictCursor) as cursor:
with self.conn(oursql.DictCursor).cursor() as cursor:
cursor.execute(query, chart_id)
for page in cursor:
chart += "\n" + self.compile_chart_row(page)


Loading…
Cancel
Save