diff options
| author | Benson Muite <bkmgit@users.noreply.github.com> | 2025-03-04 11:17:22 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-04 09:17:22 +0100 |
| commit | bef98ef4ebb5af247f349e32f55a6648bf9dbceb (patch) | |
| tree | f6c38a1ab23e4100d89c9cb447ddc8ae69400c7d /lib/gui/presets.py | |
| parent | 097451eb8b5808d31898d1f855cdea656469d1d0 (diff) | |
Migrate from appdirs to platformdirs (#3449) (#3450)
Diffstat (limited to 'lib/gui/presets.py')
| -rw-r--r-- | lib/gui/presets.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gui/presets.py b/lib/gui/presets.py index 7fbce496..0457963e 100644 --- a/lib/gui/presets.py +++ b/lib/gui/presets.py @@ -89,8 +89,8 @@ class PresetsPanel(wx.Panel): @cache def presets_path(self): try: - import appdirs - config_path = appdirs.user_config_dir('inkstitch') + import platformdirs + config_path = platformdirs.user_config_dir('inkstitch') except ImportError: config_path = os.path.expanduser('~/.inkstitch') |
