diff options
-rw-r--r-- | CHANGES.txt | 6 | ||||
-rwxr-xr-x | setuptools/package_index.py | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index cb300d47..633e8d5f 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,12 @@ CHANGES ======= ----- +1.1.3 +----- + +* Fix NameError in previous patch. + +----- 1.1.2 ----- diff --git a/setuptools/package_index.py b/setuptools/package_index.py index a6672c70..4c9e40a7 100755 --- a/setuptools/package_index.py +++ b/setuptools/package_index.py @@ -22,6 +22,7 @@ from setuptools.compat import filterfalse from fnmatch import translate from setuptools.py24compat import hashlib from setuptools.py24compat import wraps +from setuptools.py26compat import strip_fragment from setuptools.py27compat import get_all_headers EGG_FRAGMENT = re.compile(r'^egg=([-A-Za-z0-9_.]+)$') |