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 24a3394
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 @@ -459,7 +459,7 @@ def commands(self):
"--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)

Expand Down

0 comments on commit 24a3394

Please sign in to comment.