diff options
| author | marios8543 <marios8543@gmail.com> | 2023-10-26 23:25:00 +0300 |
|---|---|---|
| committer | marios8543 <marios8543@gmail.com> | 2023-10-26 23:25:00 +0300 |
| commit | ffe9cd8afe9643c8d7b5e38c39fbe00847ed08e4 (patch) | |
| tree | 82c3dacf8ad264a5e61f3f8e4e72bdd3b483c9df /backend/src/main.py | |
| parent | a7669799bca3ff4089ab81fde924b2d2f787cf0f (diff) | |
| download | decky-loader-ffe9cd8afe9643c8d7b5e38c39fbe00847ed08e4.tar.gz decky-loader-ffe9cd8afe9643c8d7b5e38c39fbe00847ed08e4.zip | |
revert decky_plugin pyinstaller to previous version and fix sys path
Diffstat (limited to 'backend/src/main.py')
| -rw-r--r-- | backend/src/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/src/main.py b/backend/src/main.py index 83a4b997..ca6eef58 100644 --- a/backend/src/main.py +++ b/backend/src/main.py @@ -182,7 +182,7 @@ def main(): logger.warning(f"decky is running as an unprivileged user, this is not officially supported and may cause issues") # Append the loader's plugin path to the recognized python paths - sys.path.append(path.join(path.dirname(__file__), "plugin")) + sys.path.append(path.join(path.dirname(__file__), "..", "plugin")) # Append the system and user python paths sys.path.extend(get_system_pythonpaths()) |
