fix instances of consecutive articles (closes #23221)

Patch by Karan Goel.
This commit is contained in:
Benjamin Peterson 2015-01-13 09:17:24 -05:00
parent 38dc250521
commit 82f34ada45
14 changed files with 14 additions and 13 deletions

View file

@ -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