Projet

Général

Profil

0001-ogone-mark-status-95-as-success-24287.patch

Frédéric Péters, 05 juin 2018 11:57

Télécharger (827 octets)

Voir les différences:

Subject: [PATCH] ogone: mark status 95 as success (#24287)

 eopayment/ogone.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
eopayment/ogone.py
556 556
            result = DENIED
557 557
        elif status == '5':
558 558
            result = ACCEPTED
559
        elif status == '9':
559
        elif status in ('9', '95'):
560 560
            result = PAID
561 561
        elif len(status) == 2 and status[1] == '1':
562 562
            # Statuses with two digits represent either ‘intermediary'
563
-