From c5a037f94fcf9f14ef75a5ad9f0040ac95b5b755 Mon Sep 17 00:00:00 2001 From: Dorian Roly Date: Fri, 30 Oct 2020 17:30:50 +0100 Subject: [PATCH] [amex] Remove CleanText from name field sometimes there is a typo in the profile name used for the matching of the transactions with the account ex : two spaces between first_name and last "Pablo hargreeves" --- modules/americanexpress/pages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/americanexpress/pages.py b/modules/americanexpress/pages.py index c79540cc83..fa526a3a49 100644 --- a/modules/americanexpress/pages.py +++ b/modules/americanexpress/pages.py @@ -193,7 +193,7 @@ def obj_date(self): obj_amount = Eval(lambda x: -float_to_decimal(x), Dict('amount')) obj_original_currency = Dict('foreign_details/iso_alpha_currency_code', default=NotAvailable) obj_commission = CleanDecimal(Dict('foreign_details/commission_amount', default=NotAvailable), sign='-', default=NotAvailable) - obj__owner = CleanText(Dict('embossed_name')) + obj__owner = Dict('embossed_name') obj_id = Dict('reference_id', default=NotAvailable) def obj_original_amount(self): -- GitLab