Bugfix
This commit is contained in:
parent
ea6671d954
commit
08c8a16eb9
1 changed files with 2 additions and 1 deletions
|
@ -316,7 +316,8 @@ def parse_azlyrics(link: str) -> None:
|
|||
print('Track:', parsed['track_no'], '/', parsed['tracks'])
|
||||
print('Correct something?')
|
||||
|
||||
if input('[y/N] ').lower == 'y':
|
||||
if input('[y/N] ').lower() == 'y':
|
||||
print('Raising ParseError') # <-- TODO
|
||||
raise ParseError(ParseError.EDIT)
|
||||
|
||||
print()
|
||||
|
|
Reference in a new issue