diff options
Diffstat (limited to 'setuptools')
-rw-r--r-- | setuptools/command/install.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/setuptools/command/install.py b/setuptools/command/install.py index 3e6ba427..05a25c26 100644 --- a/setuptools/command/install.py +++ b/setuptools/command/install.py @@ -54,9 +54,7 @@ class install(_install): called_from_setup = self._called_from_setup(inspect.currentframe()) if not called_from_setup: - # We weren't called from the command line or setup(), so we - # should run in backward-compatibility mode to support bdist_* - # commands. + # Run in backward-compatibility mode to support bdist_* commands. _install.run(self) else: self.do_egg_install() |