diff options
Diffstat (limited to 'Lib/distutils/command/install_data.py')
-rw-r--r-- | Lib/distutils/command/install_data.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py index 95ef423..448614b 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 [] |