From af23efd3d6992b488803048f48efb1a1a1f7b908 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 12 May 2011 15:09:41 -0600 Subject: [PATCH] Fix Strategy+Business --- recipes/strategy-business.recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/strategy-business.recipe b/recipes/strategy-business.recipe index ab58965e98..a4697ecfcd 100644 --- a/recipes/strategy-business.recipe +++ b/recipes/strategy-business.recipe @@ -33,7 +33,7 @@ class StrategyBusinessRecipe(BasicNewsRecipe): elif c.name.endswith('_password'): br[c.name] = self.password raw = br.submit().read() - if '>Logout' not in raw: + if 'You have been logged in' not in raw: raise ValueError('Failed to login, check your username and password') return br