From 45cef336b1b32fdd6add009258aa1dd166edd9ef Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 30 Oct 2011 00:28:23 -0400 Subject: [PATCH] I hate debugging code remotely. --- bot/tasks/afc_statistics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/tasks/afc_statistics.py b/bot/tasks/afc_statistics.py index 04b55c5..af82719 100644 --- a/bot/tasks/afc_statistics.py +++ b/bot/tasks/afc_statistics.py @@ -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_cursor(oursql.DictCursor) as cursor: + with self.conn(oursql.DictCursor) as cursor: cursor.execute(query, chart_id) for page in cursor: chart += "\n" + self.compile_chart_row(page)