From 562a0f619e697ea437a01824a0405202f68927a5 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Tue, 2 Sep 2014 12:43:43 +0200 Subject: [PATCH] fix regexps --- modules/lcl/pages.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/lcl/pages.py b/modules/lcl/pages.py index f36328c2..51773b50 100644 --- a/modules/lcl/pages.py +++ b/modules/lcl/pages.py @@ -230,9 +230,9 @@ class Transaction(FrenchTransaction): (re.compile('^(?PREMBOURST)(?P.*)'), FrenchTransaction.TYPE_PAYBACK), (re.compile('^(?PCOM(MISSIONS?)?)(?P.*)'), FrenchTransaction.TYPE_BANK), (re.compile('^(?P(?PREMUNERATION).*)'), FrenchTransaction.TYPE_BANK), - (re.compile('^(?P(?PABON.?*)\w*.*)'), FrenchTransaction.TYPE_BANK), - (re.compile('^(?P(?PRESULTAT .?*)\w*.*)'), FrenchTransaction.TYPE_BANK), - (re.compile('^(?P(?PTRAIT\..?*)\w*.*)'), FrenchTransaction.TYPE_BANK), + (re.compile('^(?P(?PABON.*?)\w*.*)'), FrenchTransaction.TYPE_BANK), + (re.compile('^(?P(?PRESULTAT .*?)\w*.*)'), FrenchTransaction.TYPE_BANK), + (re.compile('^(?P(?PTRAIT\..*?)\w*.*)'), FrenchTransaction.TYPE_BANK), (re.compile('^(?PREM CHQ) (?P.*)'), FrenchTransaction.TYPE_DEPOSIT), ]