diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/steuermann_report.cgi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/steuermann_report.cgi b/scripts/steuermann_report.cgi index f85aa11..59d99ed 100644 --- a/scripts/steuermann_report.cgi +++ b/scripts/steuermann_report.cgi @@ -332,7 +332,9 @@ elif action == 'show_run_log': print 'ERROR - %s does not exist' %log else: file = open(log) - print file.read() + lines = file.readlines() + for ln in lines: + print '%s<br/>' %ln file.close() print html_trailer |