diff --git a/recipes/en_globes_co_il.recipe b/recipes/en_globes_co_il.recipe index 6f08d64af1..2ad5aac6af 100644 --- a/recipes/en_globes_co_il.recipe +++ b/recipes/en_globes_co_il.recipe @@ -1,5 +1,6 @@ from calibre.web.feeds.news import BasicNewsRecipe + class En_Globes_Recipe(BasicNewsRecipe): description = 'This is en.globes.co.il.' cover_url = 'https://www.globes.co.il/images/GlobesEN-144x40.gif' @@ -31,4 +32,4 @@ class En_Globes_Recipe(BasicNewsRecipe): (u"Telecommunications", u"https://www.globes.co.il/WebService/Rss/RssFeeder.asmx/FeederKeyword?iID=1386"), (u"Information technology", u"https://www.globes.co.il/WebService/Rss/RssFeeder.asmx/FeederKeyword?iID=1376"), (u"Transport and infrastructure", u"https://www.globes.co.il/WebService/Rss/RssFeeder.asmx/FeederKeyword?iID=1388"), - ] \ No newline at end of file + ] diff --git a/recipes/globes_co_il.recipe b/recipes/globes_co_il.recipe index 39da2e32f8..ffd5c71f9d 100644 --- a/recipes/globes_co_il.recipe +++ b/recipes/globes_co_il.recipe @@ -1,5 +1,6 @@ from calibre.web.feeds.news import BasicNewsRecipe + class AdvancedUserRecipe1283848012(BasicNewsRecipe): description = 'This is Globes.co.il.' cover_url = 'https://images.globes.co.il/globes/logo-138-35-2.svg?ver=1' diff --git a/recipes/walla.recipe b/recipes/walla.recipe index cfbe53c807..5760a71e58 100644 --- a/recipes/walla.recipe +++ b/recipes/walla.recipe @@ -9,7 +9,7 @@ class AdvancedUserRecipe1283848012(BasicNewsRecipe): title = u'Walla' language = 'he' __author__ = 'marbs & barakplasma' - extra_css = 'body{direction: rtl;},title{direction: rtl; } ,article_description{direction: rtl; }, a.article{direction: rtl; } ,calibre_feed_description{direction: rtl; }' + extra_css = 'body{direction: rtl;},title{direction: rtl; } ,article_description{direction: rtl; }, a.article{direction: rtl; } ,calibre_feed_description{direction: rtl; }' # noqa simultaneous_downloads = 5 timefmt = '[%d/%m/%y %H:%M]' oldest_article = 1 diff --git a/recipes/works_in_progress.recipe b/recipes/works_in_progress.recipe index bd5a6dfafd..4aacf976a9 100644 --- a/recipes/works_in_progress.recipe +++ b/recipes/works_in_progress.recipe @@ -2,9 +2,10 @@ # vim:fileencoding=utf-8 from calibre.web.feeds.news import BasicNewsRecipe + class WorksInProgress(BasicNewsRecipe): title = 'Works in progress' - description = 'Works in Progress is an online magazine dedicated to sharing new and underrated ideas to improve the world, and features original writing from some of the most interesting thinkers in the world' + description = 'Works in Progress is an online magazine dedicated to sharing new and underrated ideas to improve the world, and features original writing from some of the most interesting thinkers in the world' # noqa cover_url = "https://www.worksinprogress.co/wp-content/uploads/2020/03/logo-1.svg" oldest_article = 7 max_articles_per_feed = 100 @@ -34,4 +35,4 @@ class WorksInProgress(BasicNewsRecipe): feeds.append((section_title, section_items)) - return feeds \ No newline at end of file + return feeds diff --git a/recipes/ynet.recipe b/recipes/ynet.recipe index 160d3940d7..155d7459d4 100644 --- a/recipes/ynet.recipe +++ b/recipes/ynet.recipe @@ -1,7 +1,6 @@ import re from calibre.web.feeds.news import BasicNewsRecipe -import mechanize class AdvancedUserRecipe1283848012(BasicNewsRecipe):