oops: remove spaces in account IDs
This commit is contained in:
parent
0297f293a7
commit
e234ccfbb1
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ class AccountsList(BasePage):
|
|||
account._link_id = a.get('href', '')
|
||||
|
||||
elif td.attrib.get('headers', '') == 'NumeroCompte':
|
||||
account.id = self.parser.tocleanstring(td)
|
||||
account.id = self.parser.tocleanstring(td).replace(u'\xa0', '')
|
||||
|
||||
elif td.attrib.get('headers', '') == 'Libelle':
|
||||
text = self.parser.tocleanstring(td)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue