diff --git a/beetsplug/lyrics.py b/beetsplug/lyrics.py index fe833e6c1..4cc8cb441 100644 --- a/beetsplug/lyrics.py +++ b/beetsplug/lyrics.py @@ -84,7 +84,7 @@ def unescape(text): def replchar(m): num = m.group(1) - return unichr(int(num)) + return six.unichr(int(num)) out = re.sub(u"&#(\d+);", replchar, out) return out