Skip to content

Commit

Permalink
fix dir check
Browse files Browse the repository at this point in the history
  • Loading branch information
timgates42 committed Sep 11, 2020
1 parent 3ac5aca commit 33ff0de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/meticulous/_storage.py
Expand Up @@ -82,7 +82,7 @@ def get_store_dir():
Locate the storage directory of this project
"""
apppath = pathlib.Path.home() / ".meticulous"
if not apppath.isdir():
if not apppath.is_dir():
apppath.mkdir()
return apppath

Expand Down

0 comments on commit 33ff0de

Please sign in to comment.