From 39584a8b694bed51a161cd03d64456b0cbcbbdb4 Mon Sep 17 00:00:00 2001 From: Fabrice Laporte Date: Fri, 19 Dec 2014 00:19:59 +0100 Subject: [PATCH] fix flake8 --- beetsplug/lyrics.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/beetsplug/lyrics.py b/beetsplug/lyrics.py index f7933661d..e778ad950 100644 --- a/beetsplug/lyrics.py +++ b/beetsplug/lyrics.py @@ -244,9 +244,8 @@ def fetch_lyricscom(artist, title): html = fetch_url(url) if not html: return - lyrics = extract_text_between(html, - '
', - '
') + lyrics = extract_text_between(html, '
', '
') if not lyrics: return for not_found_str in LYRICSCOM_NOT_FOUND: