Remove space in ids
This commit is contained in:
parent
41b55220ec
commit
47040c248c
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ class ProAccountsList(BasePage):
|
|||
continue
|
||||
|
||||
account = Account()
|
||||
account.id = self.parser.tocleanstring(cols[self.COL_ID])
|
||||
account.id = self.parser.tocleanstring(cols[self.COL_ID]).replace(" ", "")
|
||||
account.label = self.parser.tocleanstring(cols[self.COL_LABEL])
|
||||
account.balance = Decimal(self.parser.tocleanstring(cols[self.COL_BALANCE]))
|
||||
try:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue