Closed sarviovalente closed 3 years ago
How to solve.
It's a bug in file init.py located in:
C:\Program Files\QGIS 3.10\apps\Python37\lib\site-packages\pkg_resources
init.py
in line fspath = fspath.rstrip(os.sep)
to solve, you should convert fspath to string
So, just add the line before use rstrip function fspath = os.fspath(path) #Sarvio Valente fspath = fspath.rstrip(os.sep)
So. I think the plugin is calling the function (def _zipinfo_name(self, fspath):) where the rstrip is used. So, before calling this function, you should guarantee the fspath is string.
Sarvio Valente
This error occurs when trying to open the plugin (check-in box manage plugin).