summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-06-06 02:18:13 (GMT)
committerGreg Ward <gward@python.net>2000-06-06 02:18:13 (GMT)
commitec21cc60db65cd5626e6032e8d97e1c1e9155db9 (patch)
tree06d8ee503881511032d420bc03e93527ec1bbf8f
parentdab0554d5dce652fe2e4a809281df031becd08e0 (diff)
downloadcpython-ec21cc60db65cd5626e6032e8d97e1c1e9155db9.zip
cpython-ec21cc60db65cd5626e6032e8d97e1c1e9155db9.tar.gz
cpython-ec21cc60db65cd5626e6032e8d97e1c1e9155db9.tar.bz2
'get_outputs()' now returns an empty list instead of None.
-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 acc89aa..5481dab 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 []