From a80d6302ec2e1a74d169e2cd8afd92cc29dccd02 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 20 Oct 2016 23:12:14 +0530 Subject: [PATCH] Update MIT Technology Review Fixes #1635338 [MIT Technology Review magazine doesn't download main article](https://bugs.launchpad.net/calibre/+bug/1635338) --- recipes/mit_technology_review.recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/mit_technology_review.recipe b/recipes/mit_technology_review.recipe index 9daa5196c3..9d219c7752 100644 --- a/recipes/mit_technology_review.recipe +++ b/recipes/mit_technology_review.recipe @@ -53,7 +53,7 @@ class MitTechnologyReview(BasicNewsRecipe): # parse articles current_articles = [] for div in soup.findAll(attrs={'class': lambda x: x in - 'magazine-features-item__top-title magazine-features-item-title author-tz__title feed-tz__title'.split()}): + 'magazine-topper__title magazine-features-item__top-title magazine-features-item-title author-tz__title feed-tz__title'.split()}): a = div.find('a', href=True) title = self.tag_to_string(a).strip() href = absurl(a['href'])