From 4a8f978f4c1fff3dc842d891ccb0eb5a5fc516d4 Mon Sep 17 00:00:00 2001 From: Giorgos Logiotatidis Date: Mon, 25 May 2015 14:37:38 +0300 Subject: [PATCH] [convert] Fix dest and format flags help text. --- beetsplug/convert.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/convert.py b/beetsplug/convert.py index 8858d710c..4c39c52a9 100644 --- a/beetsplug/convert.py +++ b/beetsplug/convert.py @@ -147,9 +147,9 @@ class ConvertPlugin(BeetsPlugin): dest='keep_new', help='keep only the converted \ and move the old files') cmd.parser.add_option('-d', '--dest', action='store', - help='set the target format of the tracks') - cmd.parser.add_option('-f', '--format', action='store', dest='format', help='set the destination directory') + cmd.parser.add_option('-f', '--format', action='store', dest='format', + help='set the target format of the tracks') cmd.parser.add_option('-y', '--yes', action='store_true', dest='yes', help='do not ask for confirmation') cmd.parser.add_album_option()