Browse Source

Make chart generation faster.

pull/15/head
Ben Kurtovic 11 years ago
parent
commit
51643149e3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tasks/afc_statistics.py

+ 1
- 1
tasks/afc_statistics.py View File

@@ -159,7 +159,7 @@ class AFCStatistics(Task):
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,))
for page in cursor:
for page in cursor.fetchall():
chart += "\n" + self.compile_chart_row(page)

chart += "\n{{" + self.tl_footer + "}}"


Loading…
Cancel
Save