From 0d4e7050e3bd618f336f6fc60a5e9990705b9f39 Mon Sep 17 00:00:00 2001 From: KevinNitroG Date: Mon, 26 Feb 2024 21:37:46 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=201.2:=20Missing=20slash=20in=20di?= =?UTF-8?q?r=20of=20Pyinstaller=20MEIPASS?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.py b/src/constants.py index e96bd97..4d20964 100644 --- a/src/constants.py +++ b/src/constants.py @@ -5,7 +5,7 @@ if getattr(sys, "frozen", False) and hasattr(sys, "_MEIPASS"): - BUNDLE_DIR: str = sys._MEIPASS # type: ignore # skipcq: PYL-W0212 # pylint: disable=protected-access # nopep8 + BUNDLE_DIR: str = sys._MEIPASS + "/" # type: ignore # skipcq: PYL-W0212 # pylint: disable=protected-access # nopep8 else: BUNDLE_DIR = ""