remove spaces from IDs
This commit is contained in:
parent
b888e393f7
commit
5fa16ee66d
1 changed files with 1 additions and 1 deletions
|
|
@ -172,7 +172,7 @@ class ProAccountsPage(AccountsPage):
|
|||
cols = tr.findall('td')
|
||||
|
||||
a = Account()
|
||||
a.id = cols[self.COL_ID].xpath('.//span[@class="right-underline"]')[0].text.strip()
|
||||
a.id = cols[self.COL_ID].xpath('.//span[@class="right-underline"]')[0].text.replace(' ', '').strip()
|
||||
a.label = unicode(cols[self.COL_ID].xpath('.//span[@class="left-underline"]')[0].text.strip())
|
||||
a.type = self.get_account_type(a.label)
|
||||
balance = self.parser.tocleanstring(cols[self.COL_BALANCE])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue