Commit a0999be8 authored by Jason R. Coombs's avatar Jason R. Coombs

Correct typo in previous bugfix

parent 8005b272
...@@ -2,6 +2,12 @@ ...@@ -2,6 +2,12 @@
CHANGES CHANGES
======= =======
-----
3.0.2
-----
* Correct typo in previous bugfix.
----- -----
3.0.1 3.0.1
----- -----
......
...@@ -73,7 +73,7 @@ def get_zip_class(): ...@@ -73,7 +73,7 @@ def get_zip_class():
return self return self
def __exit__(self, type, value, traceback): def __exit__(self, type, value, traceback):
self.close self.close
return zipfile.Zipfile if hasattr(zipfile.ZipFile, '__exit__') else \ return zipfile.ZipFile if hasattr(zipfile.ZipFile, '__exit__') else \
ContextualZipFile ContextualZipFile
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment