From 898eaee9fded58e6448deeca373f3a3b45b61c7f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 11 May 2016 17:01:34 +0530 Subject: [PATCH] ... --- recipes/financial_times_uk.recipe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/financial_times_uk.recipe b/recipes/financial_times_uk.recipe index c144c51201..25d984aec4 100644 --- a/recipes/financial_times_uk.recipe +++ b/recipes/financial_times_uk.recipe @@ -35,7 +35,7 @@ class FinancialTimes(BasicNewsRecipe): if self.username is not None and self.password is not None: br.open(self.LOGIN) br.select_form(name='login') - br['email' ] = self.username + br['email'] = self.username br['password'] = self.password br.submit() return br @@ -45,7 +45,7 @@ class FinancialTimes(BasicNewsRecipe): ] remove_tags = [ dict(name='div', attrs={'id':'floating-con'}), - dict(name=['meta','iframe','base','object','embed','link']), + dict(name=['meta','iframe','base','object','embed','link', 'style']), dict(attrs={'class':['storyTools','story-package','screen-copy','story-package separator','expandable-image','promobox']}), dict(name='div', attrs={'class':lambda x: x and 'insideArticleRelatedTopics' in x.split()}), dict(name='div', attrs={'class':lambda x: x and 'ft-new-story-tools-box' in x.split()}),