aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-12-31 16:47:55 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-12-31 16:47:55 -0500
commit9b985a9112d9be396adca6a1948076378c70cc34 (patch)
tree99e334a9df66bdeeb5a470c4abe65d9c66e0090d /setuptools/command
parentddb91c20793d8e5e8a01e0302afeaaba76776741 (diff)
downloadexternal_python_setuptools-9b985a9112d9be396adca6a1948076378c70cc34.tar.gz
external_python_setuptools-9b985a9112d9be396adca6a1948076378c70cc34.tar.bz2
external_python_setuptools-9b985a9112d9be396adca6a1948076378c70cc34.zip
Use the same technique in pkg_resources, relying on an 'extern' module to resolve the conditional import.
--HG-- branch : feature/issue-229
Diffstat (limited to 'setuptools/command')
-rwxr-xr-xsetuptools/command/egg_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py
index cf46d24a..18a3105f 100755
--- a/setuptools/command/egg_info.py
+++ b/setuptools/command/egg_info.py
@@ -26,7 +26,7 @@ from pkg_resources import (
safe_version, yield_lines, EntryPoint, iter_entry_points, to_filename)
import setuptools.unicode_utils as unicode_utils
-from pkg_resources import packaging
+from pkg_resources.extern import packaging
try:
from setuptools_svn import svn_utils