From: Greg Ward Date: Tue, 6 Jun 2000 02:18:13 +0000 (+0000) Subject: 'get_outputs()' now returns an empty list instead of None. X-Git-Tag: v2.0b1~1570 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ec21cc60db65cd5626e6032e8d97e1c1e9155db9;p=thirdparty%2FPython%2Fcpython.git 'get_outputs()' now returns an empty list instead of None. --- diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py index acc89aa395da..5481dabe663e 100644 --- a/Lib/distutils/command/install_data.py +++ b/Lib/distutils/command/install_data.py @@ -56,4 +56,4 @@ class install_data (Command): return self.data_files or [] def get_outputs (self): - return self.outfiles + return self.outfiles or []