summaryrefslogtreecommitdiff
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
commit3fcf597f4db0a82fabde4d06bc287b6573763496 (patch)
tree96966c13240e8020148b61e0dd0d5525ad8b5bff
parent909f8ed55e9b027b28fe9de50682d4a21d99743d (diff)
downloadpython-setuptools-git-3fcf597f4db0a82fabde4d06bc287b6573763496.tar.gz
fix instances of consecutive articles (closes #23221)
Patch by Karan Goel.
-rw-r--r--dir_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dir_util.py b/dir_util.py
index 0924c9b0..d5cd8e3e 100644
--- a/dir_util.py
+++ b/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