projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dab0554
)
'get_outputs()' now returns an empty list instead of None.
author
Greg Ward
<gward@python.net>
Tue, 6 Jun 2000 02:18:13 +0000
(
02:18
+0000)
committer
Greg Ward
<gward@python.net>
Tue, 6 Jun 2000 02:18:13 +0000
(
02:18
+0000)
Lib/distutils/command/install_data.py
patch
|
blob
|
history
diff --git
a/Lib/distutils/command/install_data.py
b/Lib/distutils/command/install_data.py
index acc89aa395da67454d78c125314e789e3ee2e090..5481dabe663eae92da1bef1773f094cde818a4a9 100644
(file)
--- 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 []