From ae2d8320a5aa46eaae78db5abd1e3fec38e68f08 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=89ric=20Araujo?= Date: Thu, 28 Oct 2010 13:49:17 +0000 Subject: [PATCH] Fix typo from r85874 --- Lib/zipfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/zipfile.py b/Lib/zipfile.py index bb3d4a22f6..a51dd21cb3 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) -- 2.40.0