Remove useless unescape

Remove useless unescape as _scrape_script_cruft does it for us.
This commit is contained in:
Jack Wilsdon 2016-04-25 19:24:26 +01:00
parent 1be9c3003e
commit c5e2334fb5

View file

@ -334,7 +334,7 @@ class LyricsWiki(SymbolsReplaced):
# Get the HTML fragment inside the appropriate HTML element and then
# extract the text from it.
html_frag = extract_text_in(unescape(html), u"<div class='lyricbox'>")
html_frag = extract_text_in(html, u"<div class='lyricbox'>")
lyrics = _scrape_strip_cruft(html_frag, True)
if lyrics and 'Unfortunately, we are not licensed' not in lyrics: