diff --git a/beets/ui/__init__.py b/beets/ui/__init__.py index 00b217850..3d1d358a6 100644 --- a/beets/ui/__init__.py +++ b/beets/ui/__init__.py @@ -582,7 +582,7 @@ def _field_diff(field, old, new): # For strings, highlight changes. For others, colorize the whole # thing. if isinstance(oldval, basestring): - oldstr, newstr = colordiff(oldval, newval) + oldstr, newstr = colordiff(oldval, newstr) else: oldstr, newstr = colorize('red', oldstr), colorize('red', newstr)