Skip to content

Commit

Permalink
Final nitpicks on lastgenre --help wording
Browse files Browse the repository at this point in the history
  • Loading branch information
JOJ0 committed Jan 23, 2025
1 parent 2f40b31 commit 2708be2
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 @@ -424,28 +424,28 @@ def commands(self):
"--force",
dest="force",
action="store_true",
help="overwrite already present genres",
help="modify existing genres",
)
lastgenre_cmd.parser.add_option(
"-F",
"--no-force",
dest="force",
action="store_false",
help="don't overwrite already present genres",
help="don't modify existing genres",
)
lastgenre_cmd.parser.add_option(
"-k",
"--keep-existing",
dest="keep_existing",
action="store_true",
help="combine existing genres with new ones",
help="combine with existing genres when modifying",
)
lastgenre_cmd.parser.add_option(
"-K",
"--no-keep-existing",
dest="keep_existing",
action="store_false",
help="don't combine existing genres with new ones",
help="don't combine with existing genres when modifying",
)
lastgenre_cmd.parser.add_option(
"-s",
Expand Down

0 comments on commit 2708be2

Please sign in to comment.