From b5845ede8d2077bba7b98dd6f6308af5b96909eb Mon Sep 17 00:00:00 2001 From: Vincent Zeng Date: Sun, 31 Dec 2017 12:31:09 -0500 Subject: [PATCH] adding extra version confirmation options --- ttbp/ttbp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ttbp/ttbp.py b/ttbp/ttbp.py index b04b2a5..722f1ad 100644 --- a/ttbp/ttbp.py +++ b/ttbp/ttbp.py @@ -1245,7 +1245,7 @@ something strange happened to you during this update. confirm = "" - while confirm != "x": + while confirm not in ("x", "", "X", ""): confirm = raw_input("\nplease type when you've finished reading about the updates! ") open(versionFile, "w").write(__version__)