use zip64

This commit is contained in:
Rob Weber 2014-10-05 14:06:32 -05:00
parent 250a5021e0
commit 53ddc92325

View File

@ -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 [[],[]]