From 2a76a60794144b7aaaada6b96d4082bf20dadb82 Mon Sep 17 00:00:00 2001 From: Matteo Mecucci Date: Sun, 1 Apr 2012 22:41:38 +0200 Subject: [PATCH] Added --no-incremental option to beet import. --- beets/ui/commands.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 0895e6142..050fa9584 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -732,6 +732,8 @@ import_cmd.parser.add_option('-L', '--library', dest='library', action='store_true', help='retag items matching a query') import_cmd.parser.add_option('-i', '--incremental', dest='incremental', action='store_true', help='skip already-imported directories') +import_cmd.parser.add_option('--no-incremental', dest='incremental', + action='store_false', help='do not skip already-imported directories') def import_func(lib, config, opts, args): copy = opts.copy if opts.copy is not None else \ ui.config_val(config, 'beets', 'import_copy',