Skip to content

Commit

Permalink
Update cookiecutter/utils.py
Browse files Browse the repository at this point in the history
Co-authored-by: Jens W. Klein <jk@kleinundpartner.at>
  • Loading branch information
insspb and jensens committed Jun 9, 2022
1 parent 7322abd commit b0a9ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cookiecutter/utils.py
Expand Up @@ -37,7 +37,7 @@ def make_sure_path_exists(path: "os.PathLike[str]") -> None:
:param path: A directory tree path for creation.
"""
logger.debug('Making sure path exists (Create tree if not exist): %s', path)
logger.debug('Making sure path exists (creates tree if not exist): %s', path)
try:
Path(path).mkdir(parents=True, exist_ok=True)
except OSError as error:
Expand Down

0 comments on commit b0a9ebb

Please sign in to comment.