From 53ddc92325dc83b3f74742dd505b8495b7e32331 Mon Sep 17 00:00:00 2001 From: Rob Weber Date: Sun, 5 Oct 2014 14:06:32 -0500 Subject: [PATCH] use zip64 --- resources/lib/vfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/vfs.py b/resources/lib/vfs.py index 3fc5c2a..8feec66 100644 --- a/resources/lib/vfs.py +++ b/resources/lib/vfs.py @@ -85,7 +85,7 @@ class ZipFileSystem(Vfs): def __init__(self,rootString,mode): self.root_path = "" - self.zip = zipfile.ZipFile(rootString,mode=mode) + self.zip = zipfile.ZipFile(rootString,mode=mode,allowZip64=True) def listdir(self,directory): return [[],[]]