Browse Source

Merge pull request #205 from saimn/zipfile

Allow to create large zip files.
pull/210/head
Simon Conseil 10 years ago
parent
commit
337e67595e
  1. 2
      sigal/gallery.py

2
sigal/gallery.py

@ -467,7 +467,7 @@ class Album(UnicodeMixin):
if zip_gallery and len(self) > 0:
archive_path = join(self.dst_path, zip_gallery)
archive = zipfile.ZipFile(archive_path, 'w')
archive = zipfile.ZipFile(archive_path, 'w', allowZip64=True)
attr = ('src_path' if self.settings['zip_media_format'] == 'orig'
else 'dst_path')

Loading…
Cancel
Save