summaryrefslogtreecommitdiff
path: root/Lib/distutils
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-01-13 09:17:24 -0500
committerBenjamin Peterson <benjamin@python.org>2015-01-13 09:17:24 -0500
commitf13a88399f22ed55a0085c76971bda507f4bbca6 (patch)
treeef3ae75c285041035acc5e7db290e4de625bcd6c /Lib/distutils
parent47f98453c4e9c44283e1c2aa791e2abd96c42a9c (diff)
downloadcpython-f13a88399f22ed55a0085c76971bda507f4bbca6.tar.gz
fix instances of consecutive articles (closes #23221)
Patch by Karan Goel.
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/dir_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/dir_util.py b/Lib/distutils/dir_util.py
index 0924c9b0f7..d5cd8e3e24 100644
--- a/Lib/distutils/dir_util.py
+++ b/Lib/distutils/dir_util.py
@@ -81,7 +81,7 @@ def create_tree(base_dir, files, mode=0o777, verbose=1, dry_run=0):
"""Create all the empty directories under 'base_dir' needed to put 'files'
there.
- 'base_dir' is just the a name of a directory which doesn't necessarily
+ 'base_dir' is just the name of a directory which doesn't necessarily
exist yet; 'files' is a list of filenames to be interpreted relative to
'base_dir'. 'base_dir' + the directory portion of every file in 'files'
will be created if it doesn't already exist. 'mode', 'verbose' and