Skip to content

Commit

Permalink
Make --prompt input case in-sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
BioBox committed Jul 27, 2021
1 parent a56ae60 commit 315f6ab
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 315f6ab

Please sign in to comment.