From 7a80e59d7751b6c228f00be4853b1443a6233840 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 28 Apr 2018 21:29:58 -0400 Subject: fix palettes path --- inkstitch/threads/catalog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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__)))) -- cgit v1.2.3