Commit e81800c1 authored by Jason R. Coombs's avatar Jason R. Coombs

Remove excess whitespace

--HG--
extra : rebase_source : 4d1b9f2354d8966b2bd8c375662e5f29817adbb3
parent 7de6148d
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
#
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment