From ec21cc60db65cd5626e6032e8d97e1c1e9155db9 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Tue, 6 Jun 2000 02:18:13 +0000 Subject: [PATCH] 'get_outputs()' now returns an empty list instead of None. --- Lib/distutils/command/install_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py index acc89aa395..5481dabe66 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 [] -- 2.40.0