Skip to content
Snippets Groups Projects
Commit c5d1f56f authored by Philipp Hörist's avatar Philipp Hörist
Browse files

[plugin_installer] ZipFile supports only posix paths

This was a problem on Windows
parent 3832b592
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,8 @@ class PluginInfo:
@classmethod
def from_zip_file(cls, zip_file, manifest_path):
config = ConfigParser()
with zip_file.open(str(manifest_path)) as manifest_file:
# ZipFile can only handle posix paths
with zip_file.open(manifest_path.as_posix()) as manifest_file:
try:
config.read_string(manifest_file.read().decode())
except configparser.Error as error:
......@@ -167,12 +168,13 @@ def is_manifest_valid(config):
def load_icon_from_zip(zip_file, icon_path):
# ZipFile can only handle posix paths
try:
zip_file.getinfo(str(icon_path))
zip_file.getinfo(icon_path.as_posix())
except KeyError:
return None
with zip_file.open(str(icon_path)) as png_file:
with zip_file.open(icon_path.as_posix()) as png_file:
data = png_file.read()
pixbuf = GdkPixbuf.PixbufLoader()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment