handle space in account number
This commit is contained in:
parent
1005197a92
commit
66f4328ade
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ class BredBrowser(BaseBrowser):
|
|||
}
|
||||
|
||||
def __init__(self, website, accnum, *args, **kwargs):
|
||||
self.accnum = accnum.zfill(11)
|
||||
self.accnum = accnum.replace(' ','').zfill(11)
|
||||
self.DOMAIN = 'www.%s.fr' % website
|
||||
self.website = website
|
||||
BaseBrowser.__init__(self, *args, **kwargs)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue