Browse Source

Forgot to give cursor.execute()'s params as a tuple.

tags/v0.1^2
Ben Kurtovic 12 years ago
parent
commit
32e51f90e3
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

@@ -101,7 +101,7 @@ class Task(BaseTask):

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



Loading…
Cancel
Save