Support large project (> 2GB) during export

Fix #670
This commit is contained in:
Julien Duponchelle 2016-09-08 11:41:12 +02:00
parent f0edf799b7
commit 84c0a17572
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -528,7 +528,7 @@ class Project:
:returns: ZipStream object :returns: ZipStream object
""" """
z = zipstream.ZipFile() z = zipstream.ZipFile(allowZip64=True)
# topdown allo to modify the list of directory in order to ignore # topdown allo to modify the list of directory in order to ignore
# directory # directory
for root, dirs, files in os.walk(self._path, topdown=True): for root, dirs, files in os.walk(self._path, topdown=True):