diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/command/install_data.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py index f86d95e..d96a1de 100644 --- a/Lib/distutils/command/install_data.py +++ b/Lib/distutils/command/install_data.py @@ -8,7 +8,4 @@ class install_data (install_misc): self._install_dir_from('install_data') def run (self): - self._copydata(self.distribution.data) - - def get_outputs (self): - return self._outputdata(self.distribution.data) + self._copy_files(self.distribution.data) |