fix parsing of amounts
This commit is contained in:
parent
cfd1603a4b
commit
d67b6449d1
3 changed files with 5 additions and 5 deletions
|
|
@ -57,7 +57,7 @@ class AccountComing(BasePage):
|
|||
if m:
|
||||
label = text % m.groupdict()
|
||||
|
||||
amount = tds[2].text.replace('.','').replace(',','.').strip(u' \t\u20ac\xa0€\n')
|
||||
amount = tds[2].text.replace('.','').replace(',','.').strip(u' \t\u20ac\xa0€\n\r')
|
||||
|
||||
operation = Operation(len(self.operations))
|
||||
operation.date = d
|
||||
|
|
|
|||
Loading…
Reference in a new issue