commit | 240028cb771d286b39952357802483cf6a5d7e2e | [log] [tgz] |
---|---|---|
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Thu Dec 11 00:03:42 2008 +0000 |
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Thu Dec 11 00:03:42 2008 +0000 |
tree | 39d7e2bef572182effa6b03de431cfe0edb0790b | |
parent | ad9b5992e3525c8a53ec6add3fee1f97142dc503 [diff] [blame] |
#1030250: correctly pass the dry_run option to the mkpath() function.
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 @@ 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