diff --git a/beetsplug/lyrics.py b/beetsplug/lyrics.py index 8a19a10ef..d2c9eb0e5 100644 --- a/beetsplug/lyrics.py +++ b/beetsplug/lyrics.py @@ -99,6 +99,7 @@ def extract_text(html, starttag): lyrics = re.sub(r'\n +', '\n', lyrics) lyrics = re.sub(r' +\n', '\n', lyrics) lyrics = TAG_RE.sub('', lyrics) # Strip remaining HTML tags. + lyrics = lyrics.replace('\r','\n') lyrics = lyrics.strip() return lyrics