diff --git a/beets/ui.py b/beets/ui.py index 38a676296..dbb74b7d0 100644 --- a/beets/ui.py +++ b/beets/ui.py @@ -58,7 +58,7 @@ def choose_candidate(items, cur_artist, cur_album, candidates): THRESH = 0.1 #fixme top_dist, top_info = candidates[0] bypass_candidates = False - if top_dist <= THRESH: + if top_dist <= THRESH or len(candidates) <= 1: dist, info = top_dist, top_info bypass_candidates = True