summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/install_lib.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>1999-04-04 02:46:29 (GMT)
committerGreg Ward <gward@python.net>1999-04-04 02:46:29 (GMT)
commit4070f50537fd1945d2ecbb9d4e72aeba7e72fa55 (patch)
treea4ab0319733d1e159e39442d523712008a79f134 /Lib/distutils/command/install_lib.py
parentbd3bdde70bebd5f56f163dab7e6d8a04ff973013 (diff)
downloadcpython-4070f50537fd1945d2ecbb9d4e72aeba7e72fa55.zip
cpython-4070f50537fd1945d2ecbb9d4e72aeba7e72fa55.tar.gz
cpython-4070f50537fd1945d2ecbb9d4e72aeba7e72fa55.tar.bz2
Changed to use the method versions of 'copy_file()', 'copy_tree()',
and 'make_file()'-- that way, the verbose and dry-run flags are handled for free.
Diffstat (limited to 'Lib/distutils/command/install_lib.py')
-rw-r--r--Lib/distutils/command/install_lib.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py
index f2fa842..22ab71e 100644
--- a/Lib/distutils/command/install_lib.py
+++ b/Lib/distutils/command/install_lib.py
@@ -33,9 +33,7 @@ class InstallPy (Command):
# Dump entire contents of the build directory to the installation
# directory (that's the beauty of having a build directory!)
- copy_tree (self.build_dir, self.dir,
- verbose=self.distribution.verbose,
- update=1)
+ self.copy_tree (self.build_dir, self.dir)
# run ()