diff options
author | Fred Drake <distutils-sig@python.org> | 2004-04-05 20:02:45 +0000 |
---|---|---|
committer | Fred Drake <distutils-sig@python.org> | 2004-04-05 20:02:45 +0000 |
commit | 1c904e7a58dab0f911cc654979a4e3c4f94f119b (patch) | |
tree | 372e8992729b9ce31921919bfe1b54792f70249d /setuptools/command/install.py | |
parent | ba79fc03ef4aa6399aa7207bebcd65f35c3b93ad (diff) | |
download | external_python_setuptools-1c904e7a58dab0f911cc654979a4e3c4f94f119b.tar.gz external_python_setuptools-1c904e7a58dab0f911cc654979a4e3c4f94f119b.tar.bz2 external_python_setuptools-1c904e7a58dab0f911cc654979a4e3c4f94f119b.zip |
- remove trailing blank lines
- use whitespace according to the Python style guide
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4040895
Diffstat (limited to 'setuptools/command/install.py')
-rw-r--r-- | setuptools/command/install.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/setuptools/command/install.py b/setuptools/command/install.py index 82e7ebe8..86f0cb7b 100644 --- a/setuptools/command/install.py +++ b/setuptools/command/install.py @@ -6,6 +6,4 @@ class install(_install): def has_dependencies(self): return self.distribution.has_dependencies() - sub_commands = [('depends',has_dependencies)] + _install.sub_commands - - + sub_commands = [('depends', has_dependencies)] + _install.sub_commands |