Whilespace normalization (reindint.py).
diff --git a/Lib/setuptools/command/install.py b/Lib/setuptools/command/install.py
index 7221b17..bfb9af5 100644
--- a/Lib/setuptools/command/install.py
+++ b/Lib/setuptools/command/install.py
@@ -60,7 +60,7 @@
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 @@
_install.run(self)
else:
self.do_egg_install()
-
+
@@ -99,25 +99,3 @@
cmd.args = args
cmd.run()
setuptools.bootstrap_install_from = None
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-