aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-03-30 13:04:49 +0100
committerJason R. Coombs <jaraco@jaraco.com>2014-03-30 13:04:49 +0100
commit359dcd429be8857202ebcfa5b85686b032414759 (patch)
treec7051ca8760f238ce6c46d4c771588e96ae08b5b
parent421bad961106fd8353980708487b4fdfff802731 (diff)
downloadexternal_python_setuptools-359dcd429be8857202ebcfa5b85686b032414759.tar.gz
external_python_setuptools-359dcd429be8857202ebcfa5b85686b032414759.tar.bz2
external_python_setuptools-359dcd429be8857202ebcfa5b85686b032414759.zip
variable name is superfluous now
-rw-r--r--setuptools/command/install.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/command/install.py b/setuptools/command/install.py
index 05a25c26..f52423f4 100644
--- a/setuptools/command/install.py
+++ b/setuptools/command/install.py
@@ -52,8 +52,7 @@ class install(_install):
if self.old_and_unmanageable or self.single_version_externally_managed:
return _install.run(self)
- called_from_setup = self._called_from_setup(inspect.currentframe())
- if not called_from_setup:
+ if not self._called_from_setup(inspect.currentframe()):
# Run in backward-compatibility mode to support bdist_* commands.
_install.run(self)
else: