Explorar el Código

Support "collapsed" option in "compile_chart"

In "compile_chart" force the bot to add "|collapsed={{{collapsed|}}}" to the {{{DRN case status/header}}}, so that it can be shown collapsed.
pull/6/head
Dmitrij D. Czarkoff hace 12 años
padre
commit
b358b1fd0b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      tasks/drn_clerkbot.py

+ 1
- 1
tasks/drn_clerkbot.py Ver fichero

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


Cargando…
Cancelar
Guardar