Skip to content

Commit

Permalink
Fix keep-none option, reword help
Browse files Browse the repository at this point in the history
and a tiny hint along the way: clarify that -a is implicit.
  • Loading branch information
JOJ0 committed Jan 22, 2025
1 parent 5d9d884 commit e25bf70
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions beetsplug/lastgenre/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,14 +431,14 @@ def commands(self):
"--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",
Expand All @@ -452,7 +452,7 @@ def commands(self):
"--items",
action="store_false",
dest="album",
help="match items instead of albums",
help="match items instead of albums (default)",
)
lastgenre_cmd.parser.add_option(
"-a",
Expand Down

0 comments on commit e25bf70

Please sign in to comment.