summaryrefslogtreecommitdiff
path: root/Lib/distutils/command/install_data.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-06-06 02:18:13 +0000
committerGreg Ward <gward@python.net>2000-06-06 02:18:13 +0000
commite91f52664d34301c846eae4c552b064ff867d1a4 (patch)
treec0bbdcf34bd0c736aa69086116e5b7946cec777b /Lib/distutils/command/install_data.py
parent54e175ee71df51d2121b6fd2779111542ce33a43 (diff)
downloadcpython-e91f52664d34301c846eae4c552b064ff867d1a4.tar.gz
'get_outputs()' now returns an empty list instead of None.
Diffstat (limited to 'Lib/distutils/command/install_data.py')
-rw-r--r--Lib/distutils/command/install_data.py2
1 files changed, 1 insertions, 1 deletions
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 []