Support dumping sites larger than 2GB by allowing zip64
This commit is contained in:
parent
a311366ee7
commit
f7fa770fc5
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ class ZipStream(file):
|
|||
def __init__(self, dir_path):
|
||||
self.dir_path = dir_path
|
||||
self.pos = 0
|
||||
self.zf = zipfile.ZipFile(self, 'w', zipfile.ZIP_DEFLATED)
|
||||
self.zf = zipfile.ZipFile(self, 'w', zipfile.ZIP_DEFLATED, allowZip64 = True)
|
||||
self.buff = StringIO.StringIO()
|
||||
self.file_list = self.getFileList()
|
||||
|
||||
|
|
Loading…
Reference in a new issue