Ver código fonte

Please don't be mad at me.

tags/v0.1^2
Ben Kurtovic 12 anos atrás
pai
commit
f560f7d2d1
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      bot/tasks/afc_statistics.py

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

@@ -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).cursor() as cursor:
with self.conn.cursor(oursql.DictCursor) as cursor:
cursor.execute(query, chart_id)
for page in cursor:
chart += "\n" + self.compile_chart_row(page)


Carregando…
Cancelar
Salvar