[Python-checkins] r85891 - python/branches/py3k/Lib/zipfile.py

eric.araujo python-checkins at python.org
Thu Oct 28 15:49:17 CEST 2010


Author: eric.araujo
Date: Thu Oct 28 15:49:17 2010
New Revision: 85891

Log:
Fix typo from r85874


Modified:
   python/branches/py3k/Lib/zipfile.py

Modified: python/branches/py3k/Lib/zipfile.py
==============================================================================
--- python/branches/py3k/Lib/zipfile.py	(original)
+++ python/branches/py3k/Lib/zipfile.py	Thu Oct 28 15:49:17 2010
@@ -181,7 +181,7 @@
         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)


More information about the Python-checkins mailing list