Explorar el Código

lolk

tags/v0.1^2
Ben Kurtovic hace 12 años
padre
commit
3b9cc564a5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      bot/tasks/afc_statistics.py

+ 1
- 1
bot/tasks/afc_statistics.py Ver fichero

@@ -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)


Cargando…
Cancelar
Guardar