From 967ec83a7cbfa8991f9a060e07b7e3165cc48cc6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 11 Oct 2011 17:44:25 +0530 Subject: [PATCH] ... --- recipes/guardian.recipe | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/recipes/guardian.recipe b/recipes/guardian.recipe index 05d6616ace..f063934b3d 100644 --- a/recipes/guardian.recipe +++ b/recipes/guardian.recipe @@ -119,10 +119,8 @@ class Guardian(BasicNewsRecipe): } def parse_index(self): - try: - feeds = [] - for title, href in self.find_sections(): - feeds.append((title, list(self.find_articles(href)))) - return feeds - except: - raise NotImplementedError + feeds = [] + for title, href in self.find_sections(): + feeds.append((title, list(self.find_articles(href)))) + return feeds +