Sfoglia il codice sorgente

Make chart generation faster.

pull/15/head
Ben Kurtovic 11 anni fa
parent
commit
51643149e3
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      tasks/afc_statistics.py

+ 1
- 1
tasks/afc_statistics.py Vedi 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 + "}}"


Caricamento…
Annulla
Salva