Skip to content

Commit

Permalink
Merge pull request #21 from opengisch/19-typeerror-in-combination-wit…
Browse files Browse the repository at this point in the history
…h-qfieldsync

Handle zipfile.Path properly when processing packages.
m-kuhn authored Oct 10, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 49ddbb1 + 1e9af88 commit 2396509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion a00_qpip/plugin.py
Original file line number Diff line number Diff line change
@@ -153,7 +153,7 @@ def check_deps(self, additional_plugins=[]) -> MainDialog | bool:
name = dist.metadata["Name"]
libs[name].name = name
libs[name].installed_dist = dist
if os.path.dirname(dist._path) != self.site_packages_path:
if os.path.dirname(str(dist._path)) != self.site_packages_path:
libs[name].qpip = False

# Checking requirements of all plugins

0 comments on commit 2396509

Please sign in to comment.