flatpak #13

Merged
elmau merged 5 commits from AmourSpirit/zaz-pip:flatpak into develop 2023-11-01 19:18:50 -06:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit db3466b716 - Show all commits

View File

@ -29,7 +29,7 @@ class PipRunner(unohelper.Base, XJob):
if self._is_flatpak:
site_packages = self.get_flatpak_site_packages_dir()
ss = str(site_packages)
if site_packages.exists and ss not in sys.path:
if site_packages.exists() and ss not in sys.path:
sys.path.append(ss)
def execute(self, *args: Tuple[NamedValue, ...]) -> None: