Skip to content

Commit

Permalink
Make --prompt input case in-sensitive
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel J. Perry <dperry45@gatech.edu>
  • Loading branch information
BioBox committed Aug 1, 2021
1 parent ebdbde4 commit 3395c1d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion whipper/common/program.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,8 @@ def getMusicBrainz(self, ittoc, mbdiscid, release=None, country=None,
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
Expand Down

0 comments on commit 3395c1d

Please sign in to comment.