Projet

Général

Profil

0001-misc-import-PaymentException-in-__init__.py-40353.patch

Valentin Deniaud, 02 mars 2020 17:37

Télécharger (923 octets)

Voir les différences:

Subject: [PATCH] misc: import PaymentException in __init__.py (#40353)

 eopayment/__init__.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
eopayment/__init__.py
7 7

  
8 8

  
9 9
from .common import (URL, HTML, FORM, RECEIVED, ACCEPTED, PAID, DENIED,
10
                     CANCELED, CANCELLED, ERROR, WAITING, ResponseError, force_text)
10
                     CANCELED, CANCELLED, ERROR, WAITING, ResponseError, force_text,
11
                     PaymentException)
11 12

  
12 13
__all__ = ['Payment', 'URL', 'HTML', 'FORM', 'SIPS',
13 14
'SYSTEMPAY', 'SPPLUS', 'TIPI', 'DUMMY', 'get_backend', 'RECEIVED', 'ACCEPTED',
14
-