Skip to content

Commit

Permalink
Bug fix create directories recursively
Browse files Browse the repository at this point in the history
  • Loading branch information
birgits committed Nov 15, 2023
1 parent 097f965 commit 4dfc1d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edisgo/tools/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def setup_logger(

def create_dir(dir_path):
if not os.path.isdir(dir_path):
os.mkdir(dir_path)
os.makedirs(dir_path)

def get_default_root_dir():
dir_path = str(cfg_edisgo.get("user_dirs", "root_dir"))
Expand Down

0 comments on commit 4dfc1d0

Please sign in to comment.