diff options
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, |