From 44901873f7dcdd9550034357e96cf5f76275c532 Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Tue, 21 Jan 2025 13:40:29 +0100 Subject: [PATCH] Clarify log-label: keep any, no-force --- beetsplug/lastgenre/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/lastgenre/__init__.py b/beetsplug/lastgenre/__init__.py index 62432055e..573fd6dca 100644 --- a/beetsplug/lastgenre/__init__.py +++ b/beetsplug/lastgenre/__init__.py @@ -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.