diff --git a/modules/hsbc/pages/accounts.py b/modules/hsbc/pages/accounts.py index 3108a718..252f88bf 100644 --- a/modules/hsbc/pages/accounts.py +++ b/modules/hsbc/pages/accounts.py @@ -59,7 +59,8 @@ class HistoryPage(BasePage): (re.compile('^PRLV (?P.*)'), Transaction.TYPE_ORDER, '%(text)s'), (re.compile('^CB (?P.*)\s+(?P
\d+)/(?P\d+)\s*(?P.*)'), Transaction.TYPE_CARD, '%(mm)s/%(dd)s: %(text)s'), - (re.compile('^DAB (?P.*)'), Transaction.TYPE_WITHDRAWAL, '%(text)s'), + (re.compile('^DAB (?P
\d{2})/(?P\d{2}) (?P.*)'), + Transaction.TYPE_WITHDRAWAL, '%(mm)s/%(dd)s: %(text)s'), (re.compile('^CHEQUE$'), Transaction.TYPE_CHECK, 'CHEQUE'), (re.compile('^COTIS\.? (?P.*)'), Transaction.TYPE_BANK, '%(text)s'), (re.compile('^REMISE (?P.*)'), Transaction.TYPE_DEPOSIT, '%(text)s'),