From 74d20a83cdff6c54f458cbf51dc0592656b6b17c Mon Sep 17 00:00:00 2001 From: Sergio Sanchez Date: Wed, 23 Feb 2022 11:25:21 -0800 Subject: [PATCH] switch to app_dir forcing POSIX --- pypums/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pypums/constants.py b/pypums/constants.py index 27c7502..a74cff9 100644 --- a/pypums/constants.py +++ b/pypums/constants.py @@ -14,7 +14,7 @@ __app_name__ = "pypums" -app_dir = Path(get_app_dir(__app_name__)) +app_dir = Path(get_app_dir(__app_name__, force_posix=True)) data_dir = app_dir.joinpath("data") data_dir.mkdir(parents=True, exist_ok=True)