From 24a3394b97e36eb3abf36b9901b82293c236dceb Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Wed, 22 Jan 2025 18:28:45 +0100 Subject: [PATCH] Fix keep-none option, reword help and a tiny hint along the way: clarify that -a is implicit. --- beetsplug/lastgenre/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/beetsplug/lastgenre/__init__.py b/beetsplug/lastgenre/__init__.py index 3df7a15d0..9518b8f77 100644 --- a/beetsplug/lastgenre/__init__.py +++ b/beetsplug/lastgenre/__init__.py @@ -431,14 +431,14 @@ class LastGenrePlugin(plugins.BeetsPlugin): "--keep-existing", dest="keep_existing", action="store_true", - help="keep already present genres", + help="combine existing genres with new ones", ) lastgenre_cmd.parser.add_option( "-K", - "--keep-none", + "--no-keep-existing", dest="keep_existing", action="store_false", - help="don't keep already present genres", + help="don't combine existing genres with new ones", ) lastgenre_cmd.parser.add_option( "-s", @@ -459,7 +459,7 @@ class LastGenrePlugin(plugins.BeetsPlugin): "--albums", action="store_true", dest="album", - help="match albums instead of items", + help="match albums instead of items (default)", ) lastgenre_cmd.parser.set_defaults(album=True)