summaryrefslogtreecommitdiff
path: root/Lib/distutils/command/install_data.py
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2000-05-13 03:07:53 +0000
committerGregory P. Smith <greg@mad-scientist.com>2000-05-13 03:07:53 +0000
commit7d38835574ea19b449658aa31003cbccd5530c2b (patch)
treeeb5843cc377feba053ca86afdc8a0d8aefbc61b3 /Lib/distutils/command/install_data.py
parent3519bccdb93d81a3a0e38387251de754ce5a799e (diff)
downloadcpython-7d38835574ea19b449658aa31003cbccd5530c2b.tar.gz
Added 'get_inputs()' methods, needed by the "install" command's
'get_inputs()'.
Diffstat (limited to 'Lib/distutils/command/install_data.py')
-rw-r--r--Lib/distutils/command/install_data.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py
index 95ef423127..448614b050 100644
--- a/Lib/distutils/command/install_data.py
+++ b/Lib/distutils/command/install_data.py
@@ -18,3 +18,6 @@ class install_data (install_misc):
def run (self):
self._copy_files(self.distribution.data)
+
+ def get_inputs (self):
+ return self.distribution.data or []