summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-01-13 14:17:24 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-01-13 14:17:24 (GMT)
commit07f90476b954382e7a7ce95af696d90100a6eea1 (patch)
treeed0760ec0d5e55ed37a067e05119b81066367abf /Lib/distutils
parent6022f38dd80945ed512f3f8440e0220afebc2a3e (diff)
downloadcpython-07f90476b954382e7a7ce95af696d90100a6eea1.zip
cpython-07f90476b954382e7a7ce95af696d90100a6eea1.tar.gz
cpython-07f90476b954382e7a7ce95af696d90100a6eea1.tar.bz2
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 e2dc6f4..f90318e 100644
--- a/Lib/distutils/dir_util.py
+++ b/Lib/distutils/dir_util.py
@@ -83,7 +83,7 @@ def create_tree(base_dir, files, mode=0777, 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