Remove space in ids

This commit is contained in:
Tens San 2014-08-19 22:54:48 +02:00 committed by Florent
commit 47040c248c

View file

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