From d59c66af6a8f4ef4f876571ea1082427ae9206c1 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Fri, 18 Feb 2011 12:42:41 -0800 Subject: [PATCH] turn on infer_aa in appropriate situations --- 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 c401ddf53..e79c10528 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -479,7 +479,7 @@ def apply_choices(lib, copy, write, art, delete, progress): # Add items to library. We consolidate this at the end to avoid # locking while we do the copying and tag updates. - albuminfo = lib.add_album(items) + albuminfo = lib.add_album(items, infer_aa = (info is CHOICE_ASIS)) # Get album art if requested. if art and info is not CHOICE_ASIS: @@ -519,7 +519,7 @@ def simple_import(lib, paths, copy, delete, progress): for item in items: item.move(lib, True) - album = lib.add_album(items) + album = lib.add_album(items, True) lib.save() if progress: progress_set(toppath, path)