diff options
author | sienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2012-12-19 10:06:16 -0500 |
---|---|---|
committer | sienkiew <sienkiew@d34015c8-bcbb-4646-8ac8-8ba5febf221d> | 2012-12-19 10:06:16 -0500 |
commit | e876a20e1e44cb98811363923aaf0583f89c99d0 (patch) | |
tree | acfc91de53169aae395c437159f6c06cfe5d6f11 /scripts/steuermann_report.cgi | |
parent | 26153d1d08fe56601d4b4bc3c36baf7b72463aa3 (diff) | |
download | steuermann-e876a20e1e44cb98811363923aaf0583f89c99d0.tar.gz |
sort list of aux log files in report
git-svn-id: https://svn.stsci.edu/svn/ssb/etal/steuermann/trunk@898 d34015c8-bcbb-4646-8ac8-8ba5febf221d
Diffstat (limited to 'scripts/steuermann_report.cgi')
-rw-r--r-- | scripts/steuermann_report.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/steuermann_report.cgi b/scripts/steuermann_report.cgi index 0a63d8d..81e9b35 100644 --- a/scripts/steuermann_report.cgi +++ b/scripts/steuermann_report.cgi @@ -325,7 +325,7 @@ elif action == 'run_log': print run_logs print '<br/><br/>' - for log in os.listdir(run_logs): + for log in sorted(os.listdir(run_logs)): print "<a href='%s?action=show_run_log&name=%s&log_name=%s'>%s</a><br/>" %(cginame, form['name'].value, log, log) print html_trailer |