From 22f8a5acf9fd036cde8b8fa5852799d70e862364 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Tue, 28 Sep 2010 20:09:04 -0700 Subject: [PATCH] fix recommendation with MBID-based match --- beets/autotag/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/autotag/__init__.py b/beets/autotag/__init__.py index 85d245aad..f263256aa 100644 --- a/beets/autotag/__init__.py +++ b/beets/autotag/__init__.py @@ -482,7 +482,7 @@ def tag_album(items, search_artist=None, search_album=None): # If we have a very good MBID match, return immediately. # Otherwise, this match will compete against metadata-based # matches. - rec = recommendation(out_tuples) + rec = recommendation(out_tuples.values()) if rec == RECOMMEND_STRONG: log.debug('ID match.') return cur_artist, cur_album, out_tuples.values(), rec