aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-01-06 10:21:11 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-01-06 10:21:11 -0500
commite81800c109d87617f2c82a4f53a565f9c26e0614 (patch)
tree5b4dc4326782747dd5f4dc394b4d24eb139d6d89
parent7de6148d8c400e232076855eba9b57da7891e22d (diff)
downloadexternal_python_setuptools-e81800c109d87617f2c82a4f53a565f9c26e0614.tar.gz
external_python_setuptools-e81800c109d87617f2c82a4f53a565f9c26e0614.tar.bz2
external_python_setuptools-e81800c109d87617f2c82a4f53a565f9c26e0614.zip
Remove excess whitespace
--HG-- extra : rebase_source : 4d1b9f2354d8966b2bd8c375662e5f29817adbb3
-rw-r--r--setuptools/command/install.py29
1 files changed, 4 insertions, 25 deletions
diff --git a/setuptools/command/install.py b/setuptools/command/install.py
index 247c4f25..459cd3cd 100644
--- a/setuptools/command/install.py
+++ b/setuptools/command/install.py
@@ -1,4 +1,6 @@
-import setuptools, sys, glob
+import setuptools
+import sys
+import glob
from distutils.command.install import install as _install
from distutils.errors import DistutilsArgError
@@ -15,7 +17,7 @@ class install(_install):
]
new_commands = [
('install_egg_info', lambda self: True),
- ('install_scripts', lambda self: True),
+ ('install_scripts', lambda self: True),
]
_nc = dict(new_commands)
@@ -46,7 +48,6 @@ class install(_install):
self.path_file = None
self.extra_dirs = ''
-
def run(self):
# Explicit request for old-style install? Just do it
if self.old_and_unmanageable or self.single_version_externally_managed:
@@ -72,11 +73,6 @@ class install(_install):
else:
self.do_egg_install()
-
-
-
-
-
def do_egg_install(self):
easy_install = self.distribution.get_command_class('easy_install')
@@ -105,20 +101,3 @@ class install(_install):
install.sub_commands = [
cmd for cmd in _install.sub_commands if cmd[0] not in install._nc
] + install.new_commands
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-#