mirror of
https://github.com/beetbox/beets.git
synced 2025-12-26 18:43:38 +01:00
lyrics: slightly more consistent white space in Tekstowo source
This commit is contained in:
parent
ed695f20a1
commit
09be82bd75
1 changed files with 2 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue