diff options
Diffstat (limited to 'src/config.py')
-rw-r--r-- | src/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.py b/src/config.py index 3e6c24f0..695362e5 100644 --- a/src/config.py +++ b/src/config.py @@ -243,7 +243,7 @@ if not CONFIG_HOME: CONFIG_PATH = path.join(CONFIG_HOME, 'poezio') try: - makedirs(CONFIG_PATH) + makedirs(CONFIG_PATH, exist_ok=True) except OSError: pass |