mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-07 10:14:46 -04:00
Fix NYTimes login page change
This commit is contained in:
parent
8c2697c90b
commit
825a3f984b
@ -282,9 +282,9 @@ class NYTimes(BasicNewsRecipe):
|
|||||||
br = BasicNewsRecipe.get_browser()
|
br = BasicNewsRecipe.get_browser()
|
||||||
if self.username is not None and self.password is not None:
|
if self.username is not None and self.password is not None:
|
||||||
br.open('http://www.nytimes.com/auth/login')
|
br.open('http://www.nytimes.com/auth/login')
|
||||||
br.select_form(name='login')
|
br.form = br.forms().next()
|
||||||
br['USERID'] = self.username
|
br['userid'] = self.username
|
||||||
br['PASSWORD'] = self.password
|
br['password'] = self.password
|
||||||
raw = br.submit().read()
|
raw = br.submit().read()
|
||||||
if 'Please try again' in raw:
|
if 'Please try again' in raw:
|
||||||
raise Exception('Your username and password are incorrect')
|
raise Exception('Your username and password are incorrect')
|
||||||
|
@ -282,9 +282,9 @@ class NYTimes(BasicNewsRecipe):
|
|||||||
br = BasicNewsRecipe.get_browser()
|
br = BasicNewsRecipe.get_browser()
|
||||||
if self.username is not None and self.password is not None:
|
if self.username is not None and self.password is not None:
|
||||||
br.open('http://www.nytimes.com/auth/login')
|
br.open('http://www.nytimes.com/auth/login')
|
||||||
br.select_form(name='login')
|
br.form = br.forms().next()
|
||||||
br['USERID'] = self.username
|
br['userid'] = self.username
|
||||||
br['PASSWORD'] = self.password
|
br['password'] = self.password
|
||||||
raw = br.submit().read()
|
raw = br.submit().read()
|
||||||
if 'Please try again' in raw:
|
if 'Please try again' in raw:
|
||||||
raise Exception('Your username and password are incorrect')
|
raise Exception('Your username and password are incorrect')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user