diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index 39fc33d5..1d8309b1 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -80,7 +80,7 @@ def remove_heroku_files(): file_names = ["Procfile", "runtime.txt", "requirements.txt"] for file_name in file_names: if file_name == "requirements.txt" and "{{ cookiecutter.ci_tool }}".lower() == "travis": - # don't remove the file if we are using travisci but not using heroku + # Don't remove the file if we are using Travis CI but not using Heroku continue Path(file_name).unlink() shutil.rmtree("bin")