1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-15 04:49:10 +00:00

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
"""
z = zipstream.ZipFile()
z = zipstream.ZipFile(allowZip64=True)
# topdown allo to modify the list of directory in order to ignore
# directory
for root, dirs, files in os.walk(self._path, topdown=True):