mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-08-11 09:13:57 -04:00
Correct value for ZIP_FILECOUNT_LIMIT
This commit is contained in:
parent
91fbb9d2cd
commit
67182699dc
@ -35,7 +35,7 @@ class LargeZipFile(Exception):
|
||||
error = BadZipfile # The exception raised by this module
|
||||
|
||||
ZIP64_LIMIT = (1 << 31) - 1
|
||||
ZIP_FILECOUNT_LIMIT = 1 << 16
|
||||
ZIP_FILECOUNT_LIMIT = (1 << 16) - 1
|
||||
ZIP_MAX_COMMENT = (1 << 16) - 1
|
||||
|
||||
# constants for Zip file compression methods
|
||||
|
Loading…
x
Reference in New Issue
Block a user