From accdaeeb4408f3c23950d6e346c36124f87070f7 Mon Sep 17 00:00:00 2001 From: sienkiew Date: Thu, 8 Nov 2012 15:11:51 +0000 Subject: count of failures by host at the top of the report git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@838 d34015c8-bcbb-4646-8ac8-8ba5febf221d --- steuermann/run_all.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'steuermann/run_all.py') diff --git a/steuermann/run_all.py b/steuermann/run_all.py index 28d6398..c47d1ff 100644 --- a/steuermann/run_all.py +++ b/steuermann/run_all.py @@ -569,11 +569,11 @@ def info_callback_want( db, run, tablename, host, cmd ) : s = s + 'W' if s == '' : s = '-' - return s + return { 'text' : s } def info_callback_depth( db, run, tablename, host, cmd ) : n = xnodes['%s:%s/%s'%(host,tablename,cmd)] - return n.depth + return { 'text' : n.depth } ##### def make_log_file_name( run_name, table, host, cmd ) : -- cgit