change a function call to avoid useless None
This commit is contained in:
parent
cafd6c8f05
commit
a56767fbf5
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ class CmbBackend(BaseBackend, ICapBank):
|
||||||
'motDePasse': self.config['password'].get()
|
'motDePasse': self.config['password'].get()
|
||||||
}
|
}
|
||||||
|
|
||||||
response = self.browser.open("https://www.cmb.fr/domiweb/servlet/Identification", None, False, data=data)
|
response = self.browser.open("https://www.cmb.fr/domiweb/servlet/Identification", allow_redirects=False, data=data)
|
||||||
|
|
||||||
if response.status_code == 302:
|
if response.status_code == 302:
|
||||||
self.islogged=True
|
self.islogged=True
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue