Browse Source

Merge pull request #6 from czarkoff/develop

Support "collapsed" option in "compile_chart"
pull/8/merge
Ben Kurtovic 11 years ago
parent
commit
60650ed23a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tasks/drn_clerkbot.py

+ 1
- 1
tasks/drn_clerkbot.py View File

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

def compile_chart(self, conn):
"""Actually generate the chart from the database."""
chart = "{{" + self.tl_chart_header + "|small={{{small|}}}}}\n"
chart = "{{" + self.tl_chart_header + "|small={{{small|}}}|collapsed={{{collapsed|}}}}}\n"
query = "SELECT * FROM cases WHERE case_status != ?"
with conn.cursor(oursql.DictCursor) as cursor:
cursor.execute(query, (self.STATUS_UNKNOWN,))


Loading…
Cancel
Save