From ecfafb5041d06217230a458668efd1930a024dc6 Mon Sep 17 00:00:00 2001 From: AnonTester <40003252+AnonTester@users.noreply.github.com> Date: Sat, 7 Nov 2020 21:48:21 +0000 Subject: [PATCH] Adjust comment to pass lint test --- beetsplug/lyrics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/lyrics.py b/beetsplug/lyrics.py index 58773ae2b..00d65b578 100644 --- a/beetsplug/lyrics.py +++ b/beetsplug/lyrics.py @@ -424,7 +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 Four-per-em space with regular space + html = re.sub(u'\u2005', " ", html) # replace unicode with regular space if plain_text_out: # Strip remaining HTML tags html = COMMENT_RE.sub('', html)