mirror of
https://github.com/beetbox/beets.git
synced 2025-12-08 01:23:09 +01:00
fix the default write behaviour to the importer configuration
This commit is contained in:
parent
1f6335581e
commit
499cd378b7
1 changed files with 2 additions and 3 deletions
|
|
@ -1025,9 +1025,8 @@ class ReplayGainPlugin(BeetsPlugin):
|
||||||
help=u"analyze all files, including those that "
|
help=u"analyze all files, including those that "
|
||||||
"already have ReplayGain metadata")
|
"already have ReplayGain metadata")
|
||||||
cmd.parser.add_option(
|
cmd.parser.add_option(
|
||||||
"-w", "--write", dest="write",
|
"-w", "--write", default=None, action="store_true",
|
||||||
action="store_true",
|
help=u"write new metadata to files' tags")
|
||||||
help=u"write new metadata to files' tags (default)")
|
|
||||||
cmd.parser.add_option(
|
cmd.parser.add_option(
|
||||||
"-W", "--nowrite", dest="write", action="store_false",
|
"-W", "--nowrite", dest="write", action="store_false",
|
||||||
help=u"don't write metadata (opposite of -w)")
|
help=u"don't write metadata (opposite of -w)")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue