Show More
@@ -83,9 +83,7 b' class zipit:' | |||
|
83 | 83 | if not isinstance(dest, str): |
|
84 | 84 | try: |
|
85 | 85 | dest.tell() |
|
86 | except AttributeError: | |
|
87 | dest = tellable(dest) | |
|
88 | except IOError: | |
|
86 | except (AttributeError, IOError): | |
|
89 | 87 | dest = tellable(dest) |
|
90 | 88 | self.z = zipfile.ZipFile(dest, 'w', |
|
91 | 89 | compress and zipfile.ZIP_DEFLATED or |
General Comments 0
You need to be logged in to leave comments.
Login now