Skip to content

Commit

Permalink
Clarify log-label: keep any, no-force
Browse files Browse the repository at this point in the history
  • Loading branch information
JOJ0 committed Jan 21, 2025
1 parent 0f9054e commit 3618d0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions beetsplug/lastgenre/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,8 @@ def _get_genre(
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.
Expand Down

0 comments on commit 3618d0c

Please sign in to comment.