From 08c8a16eb937e2975df0fc36e60fba69d2e4e4f7 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Wed, 1 Mar 2023 18:33:27 +0400 Subject: [PATCH] Bugfix --- .id3tag_helper.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.id3tag_helper.py b/.id3tag_helper.py index ef5659b..5a6d05e 100755 --- a/.id3tag_helper.py +++ b/.id3tag_helper.py @@ -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()