bnp: now raise BrowserIncorrectPassword when user should use hellobank instead
This commit is contained in:
parent
d4ebe70d5d
commit
13fa877935
1 changed files with 1 additions and 1 deletions
|
|
@ -88,7 +88,7 @@ class LoginPage(JsonPage):
|
|||
|
||||
if error:
|
||||
msg = self.get('message')
|
||||
if error == 201:
|
||||
if error == 201 or error == 21510:
|
||||
raise BrowserIncorrectPassword(msg)
|
||||
self.logger.debug('Unexpected error at login: "%s" (code=%s)' % (msg, error))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue