From 3aeaf65f3bc9d7e18772f8dfa62b9fd333c6bee0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 2 Aug 2017 20:25:23 +0530 Subject: [PATCH] CNN Money login form URL changed --- recipes/fortune_magazine.recipe | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/recipes/fortune_magazine.recipe b/recipes/fortune_magazine.recipe index ff376b856d..b8232692a3 100644 --- a/recipes/fortune_magazine.recipe +++ b/recipes/fortune_magazine.recipe @@ -20,9 +20,8 @@ class Fortune(BasicNewsRecipe): def get_browser(self): br = BasicNewsRecipe.get_browser(self) - br.open( - 'http://money.cnn.com/2013/03/21/smallbusiness/legal-marijuana-startups.pr.fortune/index.html') - br.select_form(name="paywall-form") + br.open('http://money.cnn.com/m/#!login') + br.select_form(name="loginForm") br['email'] = self.username br['password'] = self.password br.submit()