mirror of
https://github.com/beetbox/beets.git
synced 2026-01-14 20:24:36 +01:00
Fix a missing Python 3 dict view conversion
This commit is contained in:
parent
da0e15b71e
commit
b63ac3aef7
1 changed files with 2 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue