From 226fa3a962e08756cef4817e09ff025144bd4599 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 22 Dec 2009 14:12:30 -0700 Subject: [PATCH] ... --- resources/recipes/wsj.recipe | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/recipes/wsj.recipe b/resources/recipes/wsj.recipe index e27b34c08d..09a160cd49 100644 --- a/resources/recipes/wsj.recipe +++ b/resources/recipes/wsj.recipe @@ -103,6 +103,9 @@ class WallStreetJournal(BasicNewsRecipe): current_articles.append({'title': title, 'url':url, 'description':desc, 'date':''}) + if current_articles and current_section: + feeds.append((current_section, current_articles)) + return feeds def cleanup(self):