This commit is contained in:
Dan Morris 2020-03-20 11:22:41 -07:00
Родитель e03a30e189
Коммит 2e60825bfb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -38,7 +38,7 @@ def confirm():
"""
answer = ""
while answer not in ["y", "n"]:
answer = input("OK to push to continue [Y/N]? ").lower()
answer = input("OK to continue [Y/N]? ").lower()
return answer == "y"