summaryrefslogtreecommitdiff
path: root/setuptools/command/install.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2007-02-20 22:50:42 +0000
committerPJ Eby <distutils-sig@python.org>2007-02-20 22:50:42 +0000
commit877544db61f93a08d37b6dfba2cc7f54b15835a9 (patch)
tree1e2f5edc114824d8039e9dcda857dfd7b4edd2a8 /setuptools/command/install.py
parent2fd26408a3a261ceb6edde9eeda821677e2f9df4 (diff)
downloadpython-setuptools-git-877544db61f93a08d37b6dfba2cc7f54b15835a9.tar.gz
Respect possible entry point override of 'easy_install' command.
(backport from trunk) --HG-- branch : setuptools-0.6 extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4053835
Diffstat (limited to 'setuptools/command/install.py')
-rw-r--r--setuptools/command/install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/install.py b/setuptools/command/install.py
index b9ceea9c..1de38aba 100644
--- a/setuptools/command/install.py
+++ b/setuptools/command/install.py
@@ -82,7 +82,7 @@ class install(_install):
def do_egg_install(self):
- from setuptools.command.easy_install import easy_install
+ easy_install = self.distribution.get_command_class('easy_install')
cmd = easy_install(
self.distribution, args="x", root=self.root, record=self.record,