diff --git a/xfel_calibrate/calibrate.py b/xfel_calibrate/calibrate.py index 02be5c08e6c57a6b15f19bab95e0ec51436f438e..0bed5ab99a5cd7f5dbd122d4d7560443e79645a4 100755 --- a/xfel_calibrate/calibrate.py +++ b/xfel_calibrate/calibrate.py @@ -769,17 +769,12 @@ def run(): caltype.upper(), datetime.now().isoformat()) if try_report_to_output: if "out_folder" in args: - out_path = os.path.abspath(args["out_folder"]) - if "run" in args: + if "run" in args and str(args["run"]) not in args["out_folder"]: rr = args["run"] - # Only put run, when it is not in the folder path - # (e.g. out-folder from webservice conf) - if "r{:04d}/".format(rr) not in out_path and\ - "{}".format(rr) not in out_path: - if isinstance(rr, int): - out_path = "{}/r{:04d}/".format(out_path, rr) - else: - out_path = "{}/{}/".format(out_path, rr) + # Only put run, when it is not in the out_folder + if isinstance(rr, int): + args["out_folder"] = "{}/{}/".format(args["out_folder"], rr) + out_path = os.path.abspath(args["out_folder"]) else: print("No 'out_folder' defined as argument, outputting to '{}' instead.".format( out_path))