summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2007-02-20 22:45:40 +0000
committerphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2007-02-20 22:45:40 +0000
commitdced57d20db7260fbe8123cd96a734271994c3c6 (patch)
treebe81f9acef703a4b8f7726250f13a9b27af71b75 /setuptools/command
parent498cb2526e714521dd1b13a013c330f68f95f4d4 (diff)
downloadpython-setuptools-dced57d20db7260fbe8123cd96a734271994c3c6.tar.gz
Respect possible entry point override of 'easy_install' command.
git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@53834 6015fed2-1504-0410-9fe1-9d1591cc4771
Diffstat (limited to 'setuptools/command')
-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 b9ceea9..1de38ab 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,