From ddfc32899f63aa9293fc5adca3ecf52ebf6d76ed Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 20 Jul 2024 09:44:53 +0530 Subject: [PATCH] ... --- recipes/atlantic.recipe | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipes/atlantic.recipe b/recipes/atlantic.recipe index 9766ed9ae3..0733c23895 100644 --- a/recipes/atlantic.recipe +++ b/recipes/atlantic.recipe @@ -199,7 +199,9 @@ class TheAtlantic(BasicNewsRecipe): self.cover_url = img['src'] current_section, current_articles = 'Cover Story', [] feeds = [] - for x in soup.findAll(**prefix_classes('TocFeaturedSection_heading__ TocSection_heading__ TocHeroGridItem_hedLink__ TocGridItem_hedLink__')): + for x in soup.findAll(**prefix_classes( + 'TocFeaturedSection_heading__ TocSection_heading__ TocHeroGridItem_hedLink__ TocGridItem_hedLink__ RiverGridItem_hedLink__' + )): cls = x['class'] if not isinstance(cls, str): cls = ' '.join(cls)