mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Prefix inner function with "_"
This commit is contained in:
parent
19956792a1
commit
ee5b24a937
@ -121,11 +121,12 @@ class Fokus(BasicNewsRecipe):
|
|||||||
return {'title': title, 'url': url, 'description': desc, 'date': swedish_date_str}
|
return {'title': title, 'url': url, 'description': desc, 'date': swedish_date_str}
|
||||||
|
|
||||||
def parse_web_section(self, soup, slug):
|
def parse_web_section(self, soup, slug):
|
||||||
def log(article):
|
def _log(article):
|
||||||
log_message = f"\t{article['title']} : {article['date']} : {article['url']}"
|
log_message = f"\t{article['title']} : {article['date']} : {article['url']}"
|
||||||
if article.get('description'):
|
if article.get('description'):
|
||||||
log_message += f" : {article['description']}"
|
log_message += f" : {article['description']}"
|
||||||
self.log(log_message)
|
self.log(log_message)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
article_blurbs = soup.find_all('article', {'class': 'Blurb'})
|
article_blurbs = soup.find_all('article', {'class': 'Blurb'})
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user