Skip to content

Commit

Permalink
Applied the function fill_in_the_name on veriable project_directory f…
Browse files Browse the repository at this point in the history
…or modifing folder name
  • Loading branch information
MichalKesl committed Aug 10, 2022
1 parent 9f0dd98 commit bf2c038
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions arc/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
ARC_PATH,
check_ess_settings,
delete_check_files,
fill_in_the_blanks,
get_logger,
globalize_path,
initialize_job_types,
Expand Down Expand Up @@ -276,6 +277,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
Expand Down

0 comments on commit bf2c038

Please sign in to comment.