diff options
author | Éric Araujo <merwok@netwok.org> | 2010-10-28 13:49:17 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-10-28 13:49:17 (GMT) |
commit | ae2d8320a5aa46eaae78db5abd1e3fec38e68f08 (patch) | |
tree | 1ea8b28ff0a03c562a2f93aeb2aac23e53134504 /Lib/zipfile.py | |
parent | 5bc168600aa6132577c47ce22f48c5e6c5d7325c (diff) | |
download | cpython-ae2d8320a5aa46eaae78db5abd1e3fec38e68f08.zip cpython-ae2d8320a5aa46eaae78db5abd1e3fec38e68f08.tar.gz cpython-ae2d8320a5aa46eaae78db5abd1e3fec38e68f08.tar.bz2 |
Fix typo from r85874
Diffstat (limited to 'Lib/zipfile.py')
-rw-r--r-- | Lib/zipfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/zipfile.py b/Lib/zipfile.py index bb3d4a2..a51dd21 100644 --- a/Lib/zipfile.py +++ b/Lib/zipfile.py @@ -181,7 +181,7 @@ def _EndRecData64(fpin, offset, endrec): return endrec if diskno != 0 or disks != 1: - raise BadZipZile("zipfiles that span multiple disks are not supported") + raise BadZipFile("zipfiles that span multiple disks are not supported") # Assume no 'zip64 extensible data' fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2) |