Less ambiguous prompt selection message

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

View File

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