Reword & clarify Python 2 warning in pre gen hook

Fixes #1942
This commit is contained in:
Bruno Alla 2019-03-27 21:27:52 +00:00
parent 5d38d0ce88
commit becd2dce13

View File

@ -30,9 +30,8 @@ if "{{ cookiecutter.use_docker }}".lower() == "n":
python_major_version = sys.version_info[0] python_major_version = sys.version_info[0]
if python_major_version == 2: if python_major_version == 2:
print( print(
WARNING + "Cookiecutter Django does not support Python 2. " WARNING + "You're running cookiecutter under Python 2, but the generated "
"Stability is guaranteed with Python 3.6+ only, " "project requires Python 3.6+. Do you want to proceed (y/n)? " + TERMINATOR
"are you sure you want to proceed (y/n)? " + TERMINATOR
) )
yes_options, no_options = frozenset(["y"]), frozenset(["n"]) yes_options, no_options = frozenset(["y"]), frozenset(["n"])
while True: while True: