diff options
-rw-r--r-- | CHANGES.txt | 6 | ||||
-rw-r--r-- | ez_setup.py | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 2974a3b0..6bf73335 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,12 @@ CHANGES ======= ----- +3.0.2 +----- + +* Correct typo in previous bugfix. + +----- 3.0.1 ----- diff --git a/ez_setup.py b/ez_setup.py index 09821c3c..e5adaca6 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -73,7 +73,7 @@ def get_zip_class(): return self def __exit__(self, type, value, traceback): self.close - return zipfile.Zipfile if hasattr(zipfile.ZipFile, '__exit__') else \ + return zipfile.ZipFile if hasattr(zipfile.ZipFile, '__exit__') else \ ContextualZipFile |