diff --git a/beetsplug/lyrics.py b/beetsplug/lyrics.py index 2ea364649..f23f41f11 100644 --- a/beetsplug/lyrics.py +++ b/beetsplug/lyrics.py @@ -115,7 +115,7 @@ def fetch_lyricscom(artist, title): html = urllib.urlopen(url).read() lyrics = extract_text(html, '
') - if lyrics: + if lyrics and 'Sorry, we do not have the lyric' not in lyrics: parts = lyrics.split('\n---\nLyrics powered by', 1) if parts: return parts[0]