lyrics: slightly more consistent white space in Tekstowo source

This commit is contained in:
wisp3rwind 2021-07-04 00:35:42 +02:00
parent ed695f20a1
commit 09be82bd75

View file

@ -442,14 +442,15 @@ class Tekstowo(Backend):
search_results = self.fetch_url(url)
if not search_results:
return None
song_page_url = self.parse_search_results(search_results)
song_page_url = self.parse_search_results(search_results)
if not song_page_url:
return None
song_page_html = self.fetch_url(song_page_url)
if not song_page_html:
return None
return self.extract_lyrics(song_page_html)
def parse_search_results(self, html):