From 203afd5c19b44596beda62e88ce43fd34cddd0c5 Mon Sep 17 00:00:00 2001 From: Daniel Roy Greenfeld Date: Sun, 5 Jun 2016 17:21:59 -0700 Subject: [PATCH] Fix borked Americanese to be English --- hooks/post_gen_project.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index c59d7d65..d83d9228 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -234,14 +234,14 @@ if '{{ cookiecutter.js_task_runner }}'.lower() in ['grunt', 'gulp'] and '{{ cook if '{{ cookiecutter.use_lets_encrypt }}'.lower() == 'y' and '{{ cookiecutter.use_docker }}'.lower() != 'y': remove_certbot_files() print( - "You selected to use certbot(letsencrypt) and didn't select to use docker. This is NOT supported out of the box for now. You " - "can continue to use the project like you normally would, but you will no certbot files have been included" + "You selected to use Let's Encrypt and didn't select to use docker. This is NOT supported out of the box for now. You " + "can continue to use the project like you normally would, but Let's Encrypt files have been included." ) # 10. Directs the user to the documentation if certbot and docker are selected. if '{{ cookiecutter.use_lets_encrypt }}'.lower() == 'y' and '{{ cookiecutter.use_docker }}'.lower() == 'y': print( - "You selected to use certbot(letsencrypt), please see the documentation for instructions on how to use this in production. " + "You selected to use Let's Encrypt, please see the documentation for instructions on how to use this in production. " "You must generate a dhparams.pem file before running docker-compose in a production environment." )