oops: remove spaces in account IDs

This commit is contained in:
Romain Bignon 2014-05-19 20:16:36 +02:00
commit e234ccfbb1

View file

@ -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)