summaryrefslogtreecommitdiff
path: root/Lib/setuptools/command/install.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-04-18 17:32:12 +0000
committerTim Peters <tim.peters@gmail.com>2006-04-18 17:32:12 +0000
commit584b0e0c3d27dc6b576366368bf7ca2f60e69e7c (patch)
treef2e33dbae88a59b367819920a5c4a2260f080788 /Lib/setuptools/command/install.py
parent17a35f906c29e71510d749283b381d95a5de0316 (diff)
downloadcpython-git-584b0e0c3d27dc6b576366368bf7ca2f60e69e7c.tar.gz
Whilespace normalization (reindint.py).
Diffstat (limited to 'Lib/setuptools/command/install.py')
-rw-r--r--Lib/setuptools/command/install.py26
1 files changed, 2 insertions, 24 deletions
diff --git a/Lib/setuptools/command/install.py b/Lib/setuptools/command/install.py
index 7221b17103..bfb9af5aee 100644
--- a/Lib/setuptools/command/install.py
+++ b/Lib/setuptools/command/install.py
@@ -60,7 +60,7 @@ class install(_install):
caller = sys._getframe(2)
caller_module = caller.f_globals.get('__name__','')
caller_name = caller.f_code.co_name
-
+
if caller_module != 'distutils.dist' or caller_name!='run_commands':
# We weren't called from the command line or setup(), so we
# should run in backward-compatibility mode to support bdist_*
@@ -68,7 +68,7 @@ class install(_install):
_install.run(self)
else:
self.do_egg_install()
-
+
@@ -99,25 +99,3 @@ class install(_install):
cmd.args = args
cmd.run()
setuptools.bootstrap_install_from = None
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-