File tree 2 files changed +5
-5
lines changed
payment/gateways/netaxept
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 10
10
11
11
12
12
class NetaxeptException (Exception ):
13
- def __str__ (self ):
14
- return repr (self .msg )
13
+ pass
15
14
16
15
17
16
class PaymentAlreadyRegisteredAndAuthorized (NetaxeptException ):
18
- msg = 'Payment already registered and authorized'
17
+ def __str__ (self ):
18
+ return 'Payment already registered and authorized'
19
19
20
20
21
21
def register_payment (payment : Payment ) -> str :
22
22
"""
23
23
This part of the process is unique to netaxept so it cannot be implemented inside the
24
- payment generic SPI. This implies that a programmer that wants to use the netaxept gateway will have to know
24
+ payment generic SPI. This implies that a programmer who wants to use the netaxept gateway will have to know
25
25
to call this specific function.
26
26
27
27
This function:
Original file line number Diff line number Diff line change 3
3
4
4
setup (
5
5
name = 'django-payment' ,
6
- version = '1.4 ' ,
6
+ version = '1.5 ' ,
7
7
description = '' ,
8
8
long_description = '' ,
9
9
author = 'Nicholas Wolff' ,
You can’t perform that action at this time.
0 commit comments