From 47040c248c53e56bb385570ebc9cb477b72a1579 Mon Sep 17 00:00:00 2001 From: Tens San Date: Tue, 19 Aug 2014 22:54:48 +0200 Subject: [PATCH] Remove space in ids --- modules/bnporc/pro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/bnporc/pro.py b/modules/bnporc/pro.py index c03fcbc6..ceb8a15c 100644 --- a/modules/bnporc/pro.py +++ b/modules/bnporc/pro.py @@ -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: