mirror of
https://github.com/beetbox/beets.git
synced 2025-12-18 14:44:28 +01:00
UI: Prefix penalties string with NOT EQUAL TO sign
This commit is contained in:
parent
daf635a96b
commit
238efe525c
1 changed files with 3 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue