Make --prompt input case in-sensitive

Signed-off-by: Daniel J. Perry <dperry45@gatech.edu>
This commit is contained in:
Daniel J. Perry
2021-07-27 15:25:44 -04:00
parent ebdbde4ce9
commit 3395c1d753

View File

@@ -362,7 +362,8 @@ class Program:
print("\nPlease select a release. You only need to match "
"the last few characters.")
release = input(
"With no input the release will be [%s]: " % guess)
"With no input the release will be [%s]: " %
guess).lower()
if not release:
release = guess