diff --git a/recipes/hindu.recipe b/recipes/hindu.recipe index 61fa5781eb..b29b8f17ce 100644 --- a/recipes/hindu.recipe +++ b/recipes/hindu.recipe @@ -39,8 +39,7 @@ class TheHindu(BasicNewsRecipe): div = soup.find('section', attrs={'id': 'section_'}) if div is None: return ans - ul = div.find('ul', attrs={'class': 'archive-list'}) - if ul is not None: + for ul in div.findAll('ul', attrs={'class': 'archive-list'}): for x in ul.findAll(['a']): title = self.tag_to_string(x) url = x.get('href', False)