diff --git a/internal_filesystem/lib/zipfile.py b/internal_filesystem/lib/zipfile.py index f9bdbb03..1f411716 100644 --- a/internal_filesystem/lib/zipfile.py +++ b/internal_filesystem/lib/zipfile.py @@ -1961,7 +1961,8 @@ class ZipFile: # Construct target path targetpath = self.path_join(targetpath, arcname) - targetpath = self.path_normpath(targetpath) + print(f"zipfile.py: skipping path_normpath because it adds a leading slash, while MicroPython on unix/desktop runs in a subfolder.") + #targetpath = self.path_normpath(targetpath) # Create all parent directories if necessary upperdirs = self.path_dirname(targetpath)