From 238efe525c477fb19b35ace94c2498e36ea6acd0 Mon Sep 17 00:00:00 2001 From: Maximilian Merz Date: Sun, 1 Nov 2015 19:17:15 +0100 Subject: [PATCH] UI: Prefix penalties string with NOT EQUAL TO sign --- beets/ui/commands.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 60b86a877..b5c230ab9 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -188,7 +188,9 @@ def penalty_string(distance, limit=None): if penalties: if limit and len(penalties) > limit: penalties = penalties[:limit] + ['...'] - return ui.colorize('text_warning', '(%s)' % ', '.join(penalties)) + # Prefix penalty string with U+2260: Not Equal To + penalty_string = u'\u2260 %s' % ', '.join(penalties) + return ui.colorize('changed', penalty_string) def show_change(cur_artist, cur_album, match):