Addon Manager: Fix call to get home_dir for pip

This commit is contained in:
Benjamin Nauck
2025-04-02 20:08:41 +02:00
committed by Chris Hennes
parent f4adf2e0e9
commit 8f35742f1f

View File

@@ -587,7 +587,7 @@ def create_pip_call(args: List[str]) -> List[str]:
call_args = ["pip", "--disable-pip-version-check"]
call_args.extend(args)
elif appimage:
python_exe = fci.DataPaths.home_dir + "bin/python"
python_exe = fci.DataPaths().home_dir + "bin/python"
call_args = [python_exe, "-m", "pip", "--disable-pip-version-check"]
call_args.extend(args)
else: