mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
Update log message for keeping artist in ftintitle
Update the log message when the artist is kept unchanged due to setting the keep_in_artist option to true.
This commit is contained in:
parent
aa891d21d4
commit
15d652dbae
1 changed files with 3 additions and 1 deletions
|
|
@ -130,7 +130,9 @@ class FtInTitlePlugin(plugins.BeetsPlugin):
|
||||||
"""
|
"""
|
||||||
# In case the artist is kept, do not update the artist fields.
|
# In case the artist is kept, do not update the artist fields.
|
||||||
if keep_in_artist_field:
|
if keep_in_artist_field:
|
||||||
self._log.info("artist: {0} -> {1}", item.artist, item.artist)
|
self._log.info(
|
||||||
|
"artist: {0} (Not changing due to keep_in_artist)", item.artist
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
self._log.info("artist: {0} -> {1}", item.artist, item.albumartist)
|
self._log.info("artist: {0} -> {1}", item.artist, item.albumartist)
|
||||||
item.artist = item.albumartist
|
item.artist = item.albumartist
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue