mirror of
https://github.com/beetbox/beets.git
synced 2025-12-09 10:05:35 +01:00
Simplify singleton importer "Album: " print
conditions. Co-authored-by: Benedikt <wisp3rwind@posteo.eu>
This commit is contained in:
parent
1e050e2703
commit
4087e8c790
1 changed files with 6 additions and 3 deletions
|
|
@ -461,14 +461,17 @@ def show_item_change(item, match):
|
|||
|
||||
print_("Correcting track tags from:")
|
||||
print_(f" {cur_artist} - {cur_title}")
|
||||
print_(f" Album: {cur_album}") if cur_album else None
|
||||
if cur_album:
|
||||
print_(f" Album: {cur_album}")
|
||||
print_("To:")
|
||||
print_(f" {new_artist} - {new_title}")
|
||||
print_(f" Album: {new_album}") if new_album else None
|
||||
if new_album:
|
||||
print_(f" Album: {new_album}")
|
||||
|
||||
else:
|
||||
print_(f"Tagging track: {cur_artist} - {cur_title}")
|
||||
print_(f" Album: {new_album}") if cur_album else None
|
||||
if cur_album:
|
||||
print_(f" Album: {new_album}")
|
||||
|
||||
# Data URL.
|
||||
if match.info.data_url:
|
||||
|
|
|
|||
Loading…
Reference in a new issue