diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-06 09:30:02 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-06 09:30:02 -0500 |
commit | a0999be8ebc5d05763c3ea96ecfa9b8055e264f3 (patch) | |
tree | a8f98f1d793a72e50fedd97cae762ea636db418f /ez_setup.py | |
parent | 8005b272a99f4b5d992cefc332512898b3f9fa89 (diff) | |
download | python-setuptools-git-3.0.2.tar.gz |
Correct typo in previous bugfix3.0.2
Diffstat (limited to 'ez_setup.py')
-rw-r--r-- | ez_setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |