mirror of
https://github.com/beetbox/beets.git
synced 2025-12-16 05:34:47 +01:00
Display source in release listing (yellow), if other than MusicBrainz.
This commit is contained in:
parent
22e895df83
commit
1f7a782c01
1 changed files with 5 additions and 0 deletions
|
|
@ -440,6 +440,11 @@ def choose_candidate(candidates, singleton, rec, cur_artist=None,
|
|||
match.info.album,
|
||||
dist_string(match.distance))]
|
||||
|
||||
# Sources other than MusicBrainz.
|
||||
source = match.info.data_source
|
||||
if source != 'MusicBrainz':
|
||||
line.append(ui.colorize('yellow', '(%s)' % source))
|
||||
|
||||
# Point out the partial matches.
|
||||
if match.extra_items or match.extra_tracks:
|
||||
line.append(ui.colorize('yellow',
|
||||
|
|
|
|||
Loading…
Reference in a new issue