mirror of
https://github.com/beetbox/beets.git
synced 2026-02-23 07:44:38 +01:00
Clarify log-label: keep any, no-force
This commit is contained in:
parent
d5cf376a51
commit
44901873f7
1 changed files with 2 additions and 2 deletions
|
|
@ -342,8 +342,8 @@ class LastGenrePlugin(plugins.BeetsPlugin):
|
|||
if not self.config["force"]:
|
||||
# Without force pre-populated tags are returned as-is.
|
||||
if isinstance(obj, library.Item):
|
||||
return obj.get("genre", with_album=False), "keep, no-force"
|
||||
return obj.get("genre"), "keep, no-force"
|
||||
return obj.get("genre", with_album=False), "keep any, no-force"
|
||||
return obj.get("genre"), "keep any, no-force"
|
||||
|
||||
if self.config["force"]:
|
||||
# Force doesn't keep any unless keep_existing is set.
|
||||
|
|
|
|||
Loading…
Reference in a new issue