diff --git a/recipes/business_standard_print.recipe b/recipes/business_standard_print.recipe index 0a05f67f35..f5b31a8588 100644 --- a/recipes/business_standard_print.recipe +++ b/recipes/business_standard_print.recipe @@ -48,10 +48,7 @@ class BusinessStandardPrint(BasicNewsRecipe): soup = self.index_to_soup( 'https://www.magzter.com/IN/Business-Standard-Private-Ltd/Business-Standard/Newspaper/' ) - for citem in soup.findAll( - 'meta', content=lambda s: s and s.endswith('view/3.jpg') - ): - return citem['content'] + return soup.find('img', id=lambda s: s and 'mgd__lhd__cover' in s.split())['src'] def parse_index(self): today = datetime.today().strftime('%d-%m-%Y')