From 13774f4f6c0213369511e2f9d47aaf5cb9495a8d Mon Sep 17 00:00:00 2001 From: Sophist Date: Thu, 4 May 2017 09:51:06 +0100 Subject: [PATCH] URL has changed for current online issue Not able to test as have not setup a dev env on my PC - but old URL is causing 404 errors. --- 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 54fc22b730..6d2cfae3f8 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.php') + soup = self.index_to_soup('http://www.private-eye.co.uk/current_issue') for citem in soup.findAll('img'): if citem['src'].endswith('big.jpg'): return 'http://www.private-eye.co.uk/' + citem['src']