From 4df4c85aa0da533ada58643036e7713f78830e1e Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Wed, 6 May 2015 15:40:22 +0200 Subject: [PATCH] fix: coma are used as decimal separators --- modules/cmso/web/pages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cmso/web/pages.py b/modules/cmso/web/pages.py index 1052ef52..fe4190e1 100644 --- a/modules/cmso/web/pages.py +++ b/modules/cmso/web/pages.py @@ -99,4 +99,4 @@ class HistoryPage(LoggedPage, HTMLPage): obj_date = Transaction.Date('./td[2]') obj_vdate = Transaction.Date('./td[1]') obj_raw = Transaction.Raw('./td[3]') - obj_amount = Transaction.Amount('./td[5]', './td[4]', replace_dots=False) + obj_amount = Transaction.Amount('./td[5]', './td[4]')