summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-12-11 00:03:42 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-12-11 00:03:42 (GMT)
commit240028cb771d286b39952357802483cf6a5d7e2e (patch)
tree39d7e2bef572182effa6b03de431cfe0edb0790b /Lib/distutils
parentad9b5992e3525c8a53ec6add3fee1f97142dc503 (diff)
downloadcpython-240028cb771d286b39952357802483cf6a5d7e2e.zip
cpython-240028cb771d286b39952357802483cf6a5d7e2e.tar.gz
cpython-240028cb771d286b39952357802483cf6a5d7e2e.tar.bz2
#1030250: correctly pass the dry_run option to the mkpath() function.
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/ccompiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/ccompiler.py b/Lib/distutils/ccompiler.py
index 0ed9a40..87d6e27 100644
--- a/Lib/distutils/ccompiler.py
+++ b/Lib/distutils/ccompiler.py
@@ -1041,7 +1041,7 @@ main (int argc, char **argv) {
return move_file (src, dst, dry_run=self.dry_run)
def mkpath (self, name, mode=0777):
- mkpath (name, mode, self.dry_run)
+ mkpath (name, mode, dry_run=self.dry_run)
# class CCompiler