From 6c32ac44e6b9f8b41118c674edd54282d5053b20 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 8 Sep 2020 08:33:47 +0530 Subject: [PATCH] Add author info to new recipes --- recipes/aftonbladet.recipe | 4 +++- recipes/svt_nyheter.recipe | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/recipes/aftonbladet.recipe b/recipes/aftonbladet.recipe index e8bfb135d0..cabc4499e4 100644 --- a/recipes/aftonbladet.recipe +++ b/recipes/aftonbladet.recipe @@ -2,8 +2,10 @@ # vim:fileencoding=utf-8 from calibre.web.feeds.news import BasicNewsRecipe + class AdvancedUserRecipe1599499742(BasicNewsRecipe): title = 'Aftonbladet' + __author__ = 'Jonatan Nyberg' oldest_article = 7 max_articles_per_feed = 100 auto_cleanup = True @@ -15,4 +17,4 @@ class AdvancedUserRecipe1599499742(BasicNewsRecipe): feeds = [ ('Aftonbladet', 'http://www.aftonbladet.se/rss.xml'), - ] \ No newline at end of file + ] diff --git a/recipes/svt_nyheter.recipe b/recipes/svt_nyheter.recipe index f0319402f7..32bda9b13b 100644 --- a/recipes/svt_nyheter.recipe +++ b/recipes/svt_nyheter.recipe @@ -2,8 +2,10 @@ # vim:fileencoding=utf-8 from calibre.web.feeds.news import BasicNewsRecipe + class AdvancedUserRecipe1599382724(BasicNewsRecipe): title = 'SVT Nyheter' + __author__ = 'Jonatan Nyberg' oldest_article = 7 max_articles_per_feed = 100 auto_cleanup = True @@ -15,4 +17,4 @@ class AdvancedUserRecipe1599382724(BasicNewsRecipe): feeds = [ ('SVT Nyheter', 'https://www.svt.se/nyheter/rss.xml'), - ] \ No newline at end of file + ]