diff options
Diffstat (limited to 'steuermann/report.py')
-rw-r--r-- | steuermann/report.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/steuermann/report.py b/steuermann/report.py index 17ccd6d..a39c4c9 100644 --- a/steuermann/report.py +++ b/steuermann/report.py @@ -54,7 +54,7 @@ def info_callback_gui( db, run, tablename, host, cmd ) : if status in simple_status : link = '%s'%d_status else : - link = " <a href='%s?action=log&name=%s/%s:%s/%s'>%s</a>"%(cginame, run, host, tablename, cmd, d_status ) + link = "<a href='%s?action=log&name=%s/%s:%s/%s'>%s</a>" %(cginame, run, host, tablename, cmd, d_status ) if not status in simple_status : try : @@ -73,7 +73,7 @@ def info_callback_gui( db, run, tablename, host, cmd ) : # h_result = '%s %s %s %s'%(link, d_status, start_time, end_time) if logs_exist: - link += '<BR/>LINK' + link += "<br/><a href='%s?action=run_log&name=%s/%s:%s/%s'>%s</a>" %(cginame, run, host, tablename, cmd, 'logs' ) h_result = link |