diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2000-05-12 01:34:33 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2000-05-12 01:34:33 (GMT) |
commit | f8f2b98bdd9ba37c8cb416a56f1aab7d25071139 (patch) | |
tree | 419888b0bdd7788c500c93e158e15a9d3ea283be | |
parent | ae988a57d2dd202e1d6242b4867d13df599cf2c7 (diff) | |
download | cpython-f8f2b98bdd9ba37c8cb416a56f1aab7d25071139.zip cpython-f8f2b98bdd9ba37c8cb416a56f1aab7d25071139.tar.gz cpython-f8f2b98bdd9ba37c8cb416a56f1aab7d25071139.tar.bz2 |
Caught up with renaming in 'install_misc' base class.
-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) |