Skip to content

Commit

Permalink
fix directories creation error (#1022)
Browse files Browse the repository at this point in the history
  • Loading branch information
Laerte committed Dec 15, 2021
1 parent 300b11c commit 4490ca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dateparser_cli/utils.py
Expand Up @@ -25,7 +25,7 @@

def create_data_model_home():
if not os.path.isdir(dateparser_model_home):
os.mkdir(dateparser_model_home)
os.makedirs(dateparser_model_home, exist_ok=True)


def clear_cache(*args):
Expand Down

0 comments on commit 4490ca6

Please sign in to comment.