From ceec9afb60a2795ab5505d0803d5b64a32402644 Mon Sep 17 00:00:00 2001 From: Tai Lee Date: Sat, 25 May 2013 01:03:01 +1000 Subject: [PATCH] Use turquoise instead of yellow for data source. It's not a warning or penalty, and is easier to distinguish from the partial match string. --- beets/ui/commands.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 588b7675b..09b66b646 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -224,8 +224,7 @@ def show_change(cur_artist, cur_album, match): info = [] info.append('(Similarity: %s)' % dist_string(match.distance)) if match.info.data_source != 'MusicBrainz': - info.append(ui.colorize('yellow', - '(%s)' % match.info.data_source)) + info.append(ui.colorize('turquoise', '(%s)' % match.info.data_source)) disambig = disambig_string(match.info) if disambig: info.append(ui.colorize('lightgray', '(%s)' % disambig)) @@ -460,7 +459,7 @@ def choose_candidate(candidates, singleton, rec, cur_artist=None, # Sources other than MusicBrainz. source = match.info.data_source if source != 'MusicBrainz': - line.append(ui.colorize('yellow', '(%s)' % source)) + line.append(ui.colorize('turquoise', '(%s)' % source)) # Point out the partial matches. if match.extra_items or match.extra_tracks: