From cc1187905173c2bd10cde69f948b5994afb93a37 Mon Sep 17 00:00:00 2001 From: Valentin Deniaud Date: Mon, 2 Mar 2020 17:35:32 +0100 Subject: [PATCH] misc: import PaymentException in __init__.py (#40353) --- eopayment/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eopayment/__init__.py b/eopayment/__init__.py index f02332b..17c9038 100644 --- a/eopayment/__init__.py +++ b/eopayment/__init__.py @@ -7,7 +7,8 @@ import pytz from .common import (URL, HTML, FORM, RECEIVED, ACCEPTED, PAID, DENIED, - CANCELED, CANCELLED, ERROR, WAITING, ResponseError, force_text) + CANCELED, CANCELLED, ERROR, WAITING, ResponseError, force_text, + PaymentException) __all__ = ['Payment', 'URL', 'HTML', 'FORM', 'SIPS', 'SYSTEMPAY', 'SPPLUS', 'TIPI', 'DUMMY', 'get_backend', 'RECEIVED', 'ACCEPTED',