From 9ae27b0a0589ea22a8dc509afa2220a421fe36cc Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Tue, 29 Mar 2011 20:08:42 -0700 Subject: [PATCH] fix ordering of CLI switches --- beets/ui/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index f8948bb33..e28a2f72b 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -620,12 +620,12 @@ import_cmd.parser.add_option('-a', '--autotag', action='store_true', import_cmd.parser.add_option('-A', '--noautotag', action='store_false', dest='autotag', help="don't infer tags for imported files (opposite of -a)") -import_cmd.parser.add_option('-r', '--art', action='store_true', - default=None, help="try to download album art") import_cmd.parser.add_option('-p', '--resume', action='store_true', default=None, help="resume importing if interrupted") import_cmd.parser.add_option('-P', '--noresume', action='store_false', dest='resume', help="do not try to resume importing") +import_cmd.parser.add_option('-r', '--art', action='store_true', + default=None, help="try to download album art") import_cmd.parser.add_option('-R', '--noart', action='store_false', dest='art', help="don't album art (opposite of -r)") import_cmd.parser.add_option('-q', '--quiet', action='store_true',