From 129e140015baace43771af82a7a08fdf501f75d0 Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Mon, 20 Jun 2016 00:34:22 -0400 Subject: [PATCH] use html_parser (really html.parser) from six.moves --- beetsplug/lyrics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/lyrics.py b/beetsplug/lyrics.py index 1bce066c9..cb455ab36 100644 --- a/beetsplug/lyrics.py +++ b/beetsplug/lyrics.py @@ -26,7 +26,7 @@ import requests import unicodedata import urllib import warnings -from HTMLParser import HTMLParseError +from six.moves.html_parser import HTMLParseError try: from bs4 import SoupStrainer, BeautifulSoup