Browse Source

Fix another bug.

tags/v0.1^2
Ben Kurtovic 12 years ago
parent
commit
ed527fca36
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      earwigbot/tasks/drn_clerkbot.py

+ 1
- 1
earwigbot/tasks/drn_clerkbot.py View File

@@ -551,7 +551,7 @@ class DRNClerkBot(Task):

def compile_chart(self, conn):
chart = "{{" + self.tl_chart_header + "}}\n"
query = "SELECT case_title, case_status, case_file_time FROM cases"
query = "SELECT * FROM cases"
with conn.cursor(oursql.DictCursor) as cursor:
cursor.execute(query)
for case in cursor:


Loading…
Cancel
Save