diff --git a/modules/fortuneo/pages/accounts_list.py b/modules/fortuneo/pages/accounts_list.py index 7526a44a..16afb316 100644 --- a/modules/fortuneo/pages/accounts_list.py +++ b/modules/fortuneo/pages/accounts_list.py @@ -83,10 +83,10 @@ class PeaHistoryPage(Page): yield inv def parse_decimal(self, string): - value = self.parser.tocleanstring(string) + value = Transaction.clean_amount(self.parser.tocleanstring(string)) if value == '-': return NotAvailable - return Decimal(Transaction.clean_amount(value)) + return Decimal(value) def get_operations(self, _id): return iter([])