From b0a9ebb642b6348607c24ce9fd8ad6e74c0105c5 Mon Sep 17 00:00:00 2001 From: Andrey Shpak Date: Thu, 9 Jun 2022 12:28:57 +0300 Subject: [PATCH] Update cookiecutter/utils.py Co-authored-by: Jens W. Klein --- cookiecutter/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookiecutter/utils.py b/cookiecutter/utils.py index 813f62cb1..d90b3a81d 100644 --- a/cookiecutter/utils.py +++ b/cookiecutter/utils.py @@ -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: