summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Monteith <stuart.monteith@linaro.org>2016-11-03 14:35:22 +0000
committerStuart Monteith <stuart.monteith@linaro.org>2016-11-03 14:35:22 +0000
commit167e7da6bac6bddaf11d8ddc441eaf2da001f17a (patch)
tree4a506f82e5e0e346a29128ca20a917f68eacc875
parent96d7223a49e5b56055480d5460b890a94d2eeaa1 (diff)
Fix typo
-rwxr-xr-xjcstress-generate-html-report.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jcstress-generate-html-report.py b/jcstress-generate-html-report.py
index 956fcf2..398b791 100755
--- a/jcstress-generate-html-report.py
+++ b/jcstress-generate-html-report.py
@@ -55,7 +55,7 @@ with open(args.results, 'rb') as csvfile:
human_readable_date = time.strftime("%Y-%m-%d", time.localtime(int(row[0]))).lower()
html_row <= TD(human_readable_date)
index_html = os.path.join(args.sub_dir, remove_starting_path(row[1], args.top_dir), 'results', 'index.html')
- print("<pre>args.subdir='{}', row[1]='{}', args.top_dir='{}', remove_starting_path(row[1], args.topdir)='{}'</pre>".format(args.sub_dir, row[1], args.topdir, remove_starting_path(row[1], args.top_dir)))
+ print("<pre>args.subdir='{}', row[1]='{}', args.top_dir='{}', remove_starting_path(row[1], args.topdir)='{}'</pre>".format(args.sub_dir, row[1], args.top_dir, remove_starting_path(row[1], args.top_dir)))
html_row <= TD(A("{}/{}".format(pass_fail[0], pass_fail[1]), href=index_html), align='right')
table <= html_row