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.command.install import install as _install
from distutils.errors import DistutilsArgError from distutils.errors import DistutilsArgError
...@@ -46,7 +48,6 @@ class install(_install): ...@@ -46,7 +48,6 @@ class install(_install):
self.path_file = None self.path_file = None
self.extra_dirs = '' self.extra_dirs = ''
def run(self): def run(self):
# Explicit request for old-style install? Just do it # Explicit request for old-style install? Just do it
if self.old_and_unmanageable or self.single_version_externally_managed: if self.old_and_unmanageable or self.single_version_externally_managed:
...@@ -72,11 +73,6 @@ class install(_install): ...@@ -72,11 +73,6 @@ class install(_install):
else: else:
self.do_egg_install() self.do_egg_install()
def do_egg_install(self): def do_egg_install(self):
easy_install = self.distribution.get_command_class('easy_install') easy_install = self.distribution.get_command_class('easy_install')
...@@ -105,20 +101,3 @@ class install(_install): ...@@ -105,20 +101,3 @@ class install(_install):
install.sub_commands = [ install.sub_commands = [
cmd for cmd in _install.sub_commands if cmd[0] not in install._nc cmd for cmd in _install.sub_commands if cmd[0] not in install._nc
] + install.new_commands ] + 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