diff --git a/beetsplug/lyrics.py b/beetsplug/lyrics.py index 5591598ae..00d65b578 100644 --- a/beetsplug/lyrics.py +++ b/beetsplug/lyrics.py @@ -424,6 +424,7 @@ def _scrape_strip_cruft(html, plain_text_out=False): html = re.sub(r' +', ' ', html) # Whitespaces collapse. html = BREAK_RE.sub('\n', html) #
eats up surrounding '\n'. html = re.sub(r'(?s)<(script).*?', '', html) # Strip script tags. + html = re.sub(u'\u2005', " ", html) # replace unicode with regular space if plain_text_out: # Strip remaining HTML tags html = COMMENT_RE.sub('', html)