Skip to content

Commit

Permalink
printProcessQueue: HTML table header "file #" not "file_id"
Browse files Browse the repository at this point in the history
 * What's included is the simple count of the file in the output,
   not the file id, so fixed label.
  • Loading branch information
jtniehof authored and dnadeau-lanl committed Nov 17, 2021
1 parent e0c738a commit 6469cb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/printProcessQueue.py
Expand Up @@ -51,7 +51,7 @@ def output_html(items, products=None):
output += " </table>\n"
output += ' <h2>{0}</h2>\n'.format('processQueue')
output +=""" <table>
<tr><th>file_id</th><th>filename</th><th>product</th></tr>
<tr><th>file #</th><th>filename</th><th>product</th></tr>
"""
for index, item in enumerate(items):
if( index % 2 == 0 ):
Expand Down

0 comments on commit 6469cb2

Please sign in to comment.