From 3bf422275b1807934a19b8dd522b27963bfc106f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 6 May 2017 08:08:47 +0530 Subject: [PATCH] ... --- recipes/private_eye.recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/private_eye.recipe b/recipes/private_eye.recipe index af2a99e458..90e7e44f74 100644 --- a/recipes/private_eye.recipe +++ b/recipes/private_eye.recipe @@ -19,7 +19,7 @@ class AdvancedUserRecipe1359406781(BasicNewsRecipe): def get_cover_url(self): cover_url = None - soup = self.index_to_soup('http://www.private-eye.co.uk/current_issue') + soup = self.index_to_soup('http://www.private-eye.co.uk/current_issue.php') for citem in soup.findAll('img'): if citem['src'].endswith('big.jpg'): return 'http://www.private-eye.co.uk/' + citem['src']