Skip to content
Snippets Groups Projects
Commit 5ca74a75 authored by Astrid Muennich's avatar Astrid Muennich Committed by Mikhail Karnevskiy
Browse files

removed double chapter if running concurrent jobs

parent 1b0a95e0
No related branches found
No related tags found
1 merge request!21Beautify report
...@@ -34,13 +34,11 @@ def combine_report(run_path, calibration): ...@@ -34,13 +34,11 @@ def combine_report(run_path, calibration):
group, conc_param = comps[0], "None" group, conc_param = comps[0], "None"
with open("{}/{}.rst".format(sphinx_path, group), "a") as gfile: with open("{}/{}.rst".format(sphinx_path, group), "a") as gfile:
if conc_param == "None": if conc_param != "None":
title = "{}".format(calibration)
else:
title = "Parameter {}".format(conc_param) title = "Parameter {}".format(conc_param)
gfile.write(title + "\n") gfile.write(title + "\n")
gfile.write( "=" *len (title) + "\n") gfile.write( "=" *len (title) + "\n")
gfile.write("\n") gfile.write("\n")
with open("{}/{}".format(run_path, entry), "r") as ifile: with open("{}/{}".format(run_path, entry), "r") as ifile:
for line in ifile.readlines(): for line in ifile.readlines():
gfile.write(line) gfile.write(line)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment