From b63ac3aef7a586ff86fd5768a7d0bc0f0f3c7e10 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Fri, 9 Sep 2016 20:12:05 -0400 Subject: [PATCH] Fix a missing Python 3 dict view conversion --- beets/autotag/match.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beets/autotag/match.py b/beets/autotag/match.py index 1b21f725a..ac213b5f9 100644 --- a/beets/autotag/match.py +++ b/beets/autotag/match.py @@ -425,7 +425,8 @@ def tag_album(items, search_artist=None, search_album=None, # matches. if rec == Recommendation.strong: log.debug(u'ID match.') - return cur_artist, cur_album, candidates.values(), rec + return cur_artist, cur_album, \ + list(candidates.values()), rec # Search terms. if not (search_artist and search_album):