[IMP]Rsync backup : allow large ZIP with ZIP64

This commit is contained in:
Fabien BOURGEOIS 2017-07-19 08:53:39 +02:00
parent 2e0395f86e
commit c7912e0db1
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ def zipdir(path, ziph):
if isfile(pfile):
ziph.write(pfile)
f = ZipFile(zippath, 'w', ZIP_DEFLATED)
f = ZipFile(zippath, 'w', ZIP_DEFLATED, allowZip64=True)
zipdir('${SOURCE}', f)
f.close()