summaryrefslogtreecommitdiff
path: root/jcstress-generate-html-report.py
diff options
context:
space:
mode:
Diffstat (limited to 'jcstress-generate-html-report.py')
-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 a5c09b4..2a2ce13 100755
--- a/jcstress-generate-html-report.py
+++ b/jcstress-generate-html-report.py
@@ -54,7 +54,7 @@ with open(args.results, 'rb') as csvfile:
pass_fail = pass_fail_rate("{}/results/index.html".format(row[1]))
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, os.path.sep, remove_starting_path(row[1], args.top_dir), 'results', 'index.html')
+ index_html = os.path.join(args.sub_dir, remove_starting_path(row[1], args.top_dir), 'results', 'index.html')
html_row <= TD(A("{}/{}".format(pass_fail[0], pass_fail[1]), href=index_html), align='right')
table <= html_row