diff options
author | Greg Ward <gward@python.net> | 2000-06-06 02:18:13 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-06-06 02:18:13 (GMT) |
commit | ec21cc60db65cd5626e6032e8d97e1c1e9155db9 (patch) | |
tree | 06d8ee503881511032d420bc03e93527ec1bbf8f /Lib/distutils/command/install_data.py | |
parent | dab0554d5dce652fe2e4a809281df031becd08e0 (diff) | |
download | cpython-ec21cc60db65cd5626e6032e8d97e1c1e9155db9.zip cpython-ec21cc60db65cd5626e6032e8d97e1c1e9155db9.tar.gz cpython-ec21cc60db65cd5626e6032e8d97e1c1e9155db9.tar.bz2 |
'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.py | 2 |
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 [] |