aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/install.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-03-30 13:04:17 +0100
committerJason R. Coombs <jaraco@jaraco.com>2014-03-30 13:04:17 +0100
commit421bad961106fd8353980708487b4fdfff802731 (patch)
tree52e21c1485138c0b7ddc4af0dcbc1b3c4f1b6d2c /setuptools/command/install.py
parentbe01e5c951fb85be934cf66a4d7878faebbb6cda (diff)
downloadexternal_python_setuptools-421bad961106fd8353980708487b4fdfff802731.tar.gz
external_python_setuptools-421bad961106fd8353980708487b4fdfff802731.tar.bz2
external_python_setuptools-421bad961106fd8353980708487b4fdfff802731.zip
Simplify comment not to repeat the obvious implication of the 'if' test.
--HG-- extra : amend_source : c92063405d99e7fdb7fe0a6312fa8438c3727c2f
Diffstat (limited to 'setuptools/command/install.py')
-rw-r--r--setuptools/command/install.py4
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()