Fix one bare except: clause.
diff --git a/Lib/zipfile.py b/Lib/zipfile.py
index 74095e2..8a113a0 100644
--- a/Lib/zipfile.py
+++ b/Lib/zipfile.py
@@ -81,7 +81,7 @@
         fpin.close()
         if endrec[0:4] == "PK\005\006" and endrec[-2:] == "\000\000":
             return 1    # file has correct magic number
-    except:
+    except IOError:
         pass