From d48f504e812c1e8ab8a64f9b968b646c27351a34 Mon Sep 17 00:00:00 2001 From: MichalKesl Date: Wed, 10 Aug 2022 14:28:02 +0300 Subject: [PATCH] Applied the function fill_in_the_name on veriable project_directory for modifing folder name --- arc/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arc/main.py b/arc/main.py index 7d62bf6d03..bc78bcaffa 100644 --- a/arc/main.py +++ b/arc/main.py @@ -27,6 +27,7 @@ ARC_PATH, check_ess_settings, delete_check_files, + fill_in_the_blanks, get_logger, globalize_path, initialize_job_types, @@ -280,6 +281,7 @@ def __init__(self, self.verbose = verbose self.project_directory = project_directory if project_directory is not None \ else os.path.join(ARC_PATH, 'Projects', self.project) + self.project_directory = fill_in_the_blanks(self.project_directory) if not os.path.exists(self.project_directory): os.makedirs(self.project_directory) self.output = output