aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/package_index.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-05-24 20:37:47 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-05-24 20:37:47 -0400
commit2b48816298bc0ad2632a393560176ed151149aa5 (patch)
tree4da6dc0e8fd8582fb2f36027daca6802a54f148c /setuptools/package_index.py
parent33c71453d52f1b35ecab54f281de8d7db13fd4ab (diff)
downloadexternal_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-xsetuptools/package_index.py2
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)