diff options
author | PJ Eby <distutils-sig@python.org> | 2007-02-20 22:50:42 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2007-02-20 22:50:42 +0000 |
commit | 877544db61f93a08d37b6dfba2cc7f54b15835a9 (patch) | |
tree | 1e2f5edc114824d8039e9dcda857dfd7b4edd2a8 /setuptools/command/install.py | |
parent | 2fd26408a3a261ceb6edde9eeda821677e2f9df4 (diff) | |
download | python-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.py | 2 |
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, |