Loading tools/job_customs/job_customs.py +1 −1 Original line number Diff line number Diff line Loading @@ -63,7 +63,7 @@ if __name__ == "__main__": logging.info(f"Getting the script for job {job}") data = {} with open(f"{utils.JOBS_DIR}/{job}/{job}.{utils.JOBS_EXTENSION}", 'r') as file: with open(f"{utils.JOBS_DIR}/{job}/{job}{utils.JOBS_EXTENSION}", 'r') as file: data = yaml.load(file, Loader=yaml.FullLoader) for script in scripts: Loading tools/job_image/job_image.py +1 −1 Original line number Diff line number Diff line Loading @@ -57,7 +57,7 @@ if __name__ == "__main__": logging.info(f"Getting the image for job {args.job}") data = {} with open(f"{utils.JOBS_DIR}/{args.job}/{args.job}.{utils.JOBS_EXTENSION}", 'r') as file: with open(f"{utils.JOBS_DIR}/{args.job}/{args.job}{utils.JOBS_EXTENSION}", 'r') as file: data = yaml.load(file, Loader=yaml.FullLoader) # If image option is directly specified in the job Loading Loading
tools/job_customs/job_customs.py +1 −1 Original line number Diff line number Diff line Loading @@ -63,7 +63,7 @@ if __name__ == "__main__": logging.info(f"Getting the script for job {job}") data = {} with open(f"{utils.JOBS_DIR}/{job}/{job}.{utils.JOBS_EXTENSION}", 'r') as file: with open(f"{utils.JOBS_DIR}/{job}/{job}{utils.JOBS_EXTENSION}", 'r') as file: data = yaml.load(file, Loader=yaml.FullLoader) for script in scripts: Loading
tools/job_image/job_image.py +1 −1 Original line number Diff line number Diff line Loading @@ -57,7 +57,7 @@ if __name__ == "__main__": logging.info(f"Getting the image for job {args.job}") data = {} with open(f"{utils.JOBS_DIR}/{args.job}/{args.job}.{utils.JOBS_EXTENSION}", 'r') as file: with open(f"{utils.JOBS_DIR}/{args.job}/{args.job}{utils.JOBS_EXTENSION}", 'r') as file: data = yaml.load(file, Loader=yaml.FullLoader) # If image option is directly specified in the job Loading