Skip to content

Commit

Permalink
013: Fixed issues-folder creation
Browse files Browse the repository at this point in the history
  • Loading branch information
HHansi committed Mar 17, 2020
1 parent 68d819b commit 304603a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/file_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def create_folder_if_not_exist(path, is_file_path=False):
def delete_create_folder(path):
if os.path.exists(path):
shutil.rmtree(path)
os.mkdir(path)
os.makedirs(path)


def add_file_extension(path, extension):
Expand Down

0 comments on commit 304603a

Please sign in to comment.