From 499cd378b7a2e7fc76821096e633e1731e9c5dbc Mon Sep 17 00:00:00 2001 From: Yann Leprince Date: Tue, 2 Jan 2018 12:11:47 +0100 Subject: [PATCH] fix the default write behaviour to the importer configuration --- beetsplug/replaygain.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/beetsplug/replaygain.py b/beetsplug/replaygain.py index 18fd8db78..19ca8572e 100644 --- a/beetsplug/replaygain.py +++ b/beetsplug/replaygain.py @@ -1025,9 +1025,8 @@ class ReplayGainPlugin(BeetsPlugin): help=u"analyze all files, including those that " "already have ReplayGain metadata") cmd.parser.add_option( - "-w", "--write", dest="write", - action="store_true", - help=u"write new metadata to files' tags (default)") + "-w", "--write", default=None, action="store_true", + help=u"write new metadata to files' tags") cmd.parser.add_option( "-W", "--nowrite", dest="write", action="store_false", help=u"don't write metadata (opposite of -w)")