diff options
| author | Lex Neva <github.com@lexneva.name> | 2018-04-28 21:29:58 -0400 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2018-04-29 21:29:16 -0400 |
| commit | 7a80e59d7751b6c228f00be4853b1443a6233840 (patch) | |
| tree | f6f2309d1800e795c7aee9fa541f6321e03619ed | |
| parent | 8608508e0237b06bea5aac7558c695fd7bc8492b (diff) | |
fix palettes path
| -rw-r--r-- | inkstitch/threads/catalog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inkstitch/threads/catalog.py b/inkstitch/threads/catalog.py index 6ff09674..cebae4ff 100644 --- a/inkstitch/threads/catalog.py +++ b/inkstitch/threads/catalog.py @@ -14,7 +14,7 @@ class _ThreadCatalog(Sequence): def get_palettes_path(self): if getattr(sys, 'frozen', None) is not None: - path = sys._MEIPASS + path = os.path.join(sys._MEIPASS, "..") else: path = dirname(dirname(dirname(realpath(__file__)))) |
