In 'install_misc': 'self.outfiles' defaults to the empty list, so we don't

have to worry about "or []" in 'get_outputs()'.
This commit is contained in:
Gregory P. Smith 2000-05-13 03:10:30 +00:00
parent 6a901dd1bd
commit 21b9e910a5
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ class install_misc (Command):
def initialize_options (self):
self.install_dir = None
self.outfiles = None
self.outfiles = []
def _install_dir_from (self, dirname):
self.set_undefined_options('install', (dirname, 'install_dir'))