From f1002b15ef6874fa125292060b14cca6cfe36a15 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 12 Mar 2022 09:52:01 +0530 Subject: [PATCH] Update The Smithsonian --- recipes/smith.recipe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/smith.recipe b/recipes/smith.recipe index 6b19d55a32..705e4eb7ef 100644 --- a/recipes/smith.recipe +++ b/recipes/smith.recipe @@ -4,7 +4,7 @@ from calibre.web.feeds.news import BasicNewsRecipe, classes CATEGORIES = { 'smart-news': 'Smart News', 'history': 'History', - 'science': 'Science', + 'science-nature': 'Science', 'innovation': 'Innovation', 'arts-culture': 'Arts & Culture', 'travel': 'Travel', @@ -58,7 +58,7 @@ class Smithsonian(BasicNewsRecipe): ans = [] for slug, title in CATEGORIES.items(): url = 'https://www.smithsonianmag.com/category/' + slug + '/' - self.log('Parsing section:', title) + self.log('Parsing section:', title, 'at:', url) articles = list(self.parse_section(url)) if articles: ans.append((title, articles))