AddonManager: fix create_pip_call

This commit is contained in:
Adrian Insaurralde Avalos
2025-08-05 17:19:07 -03:00
parent ccc98966e6
commit 256fc7eff3
@@ -585,7 +585,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: