From 3caa7b7c9294980dec3b6e4a57791ddbe81d4f64 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 24 Apr 2016 20:24:29 +0530 Subject: [PATCH] ... --- recipes/time_magazine.recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/time_magazine.recipe b/recipes/time_magazine.recipe index b8640124f5..2e9b54068e 100644 --- a/recipes/time_magazine.recipe +++ b/recipes/time_magazine.recipe @@ -70,7 +70,7 @@ class Time(JavascriptRecipe): articles = [] for article in data['articles']: title = article.get('friendly_title') or article.get('short_title') - if title == 'In the Latest Issue': + if title == 'In the Latest Issue' or 'content' not in article: continue url = article['shortlink'] desc = article.get('excerpt') or ''