summaryrefslogtreecommitdiff
path: root/lib/utils/paths.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2024-11-18 12:56:38 +0100
committerGitHub <noreply@github.com>2024-11-18 12:56:38 +0100
commita66ae845f1f62ab6106c02663d2b191a35c9361f (patch)
treed19fa099c96b6fdbfaf769c6245ac0d797748c85 /lib/utils/paths.py
parentdde0444ac29f663579e70c1214ca4faa9862f0a6 (diff)
Print-pdf: simplify path detection (#3282)
* print-pdf: simplify path detection * i18n: more cleaning up * Version, License paths
Diffstat (limited to 'lib/utils/paths.py')
-rwxr-xr-xlib/utils/paths.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/utils/paths.py b/lib/utils/paths.py
index 10d72de9..2e9faa59 100755
--- a/lib/utils/paths.py
+++ b/lib/utils/paths.py
@@ -10,14 +10,19 @@ from os.path import dirname, realpath
import appdirs
-def get_bundled_dir(name):
+def get_bundled_dir(name=None):
if getattr(sys, 'frozen', None) is not None:
if sys.platform == "darwin":
- return realpath(os.path.join(sys._MEIPASS, "..", 'Resources', name))
+ path = os.path.join(sys._MEIPASS, "..", 'Resources')
else:
- return realpath(os.path.join(sys._MEIPASS, "..", name))
+ path = os.path.join(sys._MEIPASS, "..")
else:
- return realpath(os.path.join(dirname(realpath(__file__)), '..', '..', name))
+ path = os.path.join(dirname(realpath(__file__)), '..', '..')
+
+ if name is not None:
+ path = os.path.join(path, name)
+
+ return realpath(path)
def get_resource_dir(name):