diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-24 20:37:47 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-24 20:37:47 -0400 |
commit | 2b48816298bc0ad2632a393560176ed151149aa5 (patch) | |
tree | 4da6dc0e8fd8582fb2f36027daca6802a54f148c /setuptools/package_index.py | |
parent | 33c71453d52f1b35ecab54f281de8d7db13fd4ab (diff) | |
download | external_python_setuptools-2b48816298bc0ad2632a393560176ed151149aa5.tar.gz external_python_setuptools-2b48816298bc0ad2632a393560176ed151149aa5.tar.bz2 external_python_setuptools-2b48816298bc0ad2632a393560176ed151149aa5.zip |
Restore Python 2.4 compatible syntax
--HG--
branch : distribute
Diffstat (limited to 'setuptools/package_index.py')
-rwxr-xr-x | setuptools/package_index.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/package_index.py b/setuptools/package_index.py index 0a3f9e05..b0388628 100755 --- a/setuptools/package_index.py +++ b/setuptools/package_index.py @@ -12,7 +12,7 @@ except ImportError: from md5 import md5 from fnmatch import translate -from .py24compat import wraps +from setuptools.py24compat import wraps EGG_FRAGMENT = re.compile(r'^egg=([-A-Za-z0-9_.]+)$') HREF = re.compile("""href\\s*=\\s*['"]?([^'"> ]+)""", re.I) |