diff options
| author | Josip Djolonga <devnull@localhost> | 2010-07-17 18:05:21 +0200 |
|---|---|---|
| committer | Josip Djolonga <devnull@localhost> | 2010-07-17 18:05:21 +0200 |
| commit | eef7d09beddaebe2ad579389212c70769d375cde (patch) | |
| tree | 06ecf5046cb9981b5ef6fd72693f8cc520b6df85 /src/distutils2/command | |
| parent | 6aaaf354e5905328921cb7eac50b35c43d9e81b6 (diff) | |
| download | disutils2-eef7d09beddaebe2ad579389212c70769d375cde.tar.gz | |
pep8 compliance
Diffstat (limited to 'src/distutils2/command')
| -rw-r--r-- | src/distutils2/command/install_distinfo.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/distutils2/command/install_distinfo.py b/src/distutils2/command/install_distinfo.py index 4aa7472..e5b1665 100644 --- a/src/distutils2/command/install_distinfo.py +++ b/src/distutils2/command/install_distinfo.py @@ -40,7 +40,7 @@ class install_distinfo(Command): 'requested', 'no-dist-record', ] - + negative_opt = {'no-requested': 'requested'} def initialize_options(self): @@ -54,11 +54,12 @@ class install_distinfo(Command): ('distinfo_dir', 'distinfo_dir'), ('installer', 'installer'), ('requested', 'requested'), - ('no_distinfo_record', 'no_distinfo_record')) + ('no_distinfo_record', + 'no_distinfo_record')) self.set_undefined_options('install_lib', ('install_dir', 'distinfo_dir')) - + if self.installer is None: self.installer = 'distutils' if self.requested is None: |
