fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixes #4010
[wolnelektury.git]
/
src
/
club
/
payment_methods.py
diff --git
a/src/club/payment_methods.py
b/src/club/payment_methods.py
index
99694ef
..
7657701
100644
(file)
--- a/
src/club/payment_methods.py
+++ b/
src/club/payment_methods.py
@@
-71,27
+71,14
@@
class PayPal(PaymentMethod):
return reverse('club_dummy_payment', args=[schedule.key])
return reverse('club_dummy_payment', args=[schedule.key])
-methods = []
-
-pos= getattr(settings, 'CLUB_PAYU_RECURRING_POS', None)
+pos = getattr(settings, 'CLUB_PAYU_RECURRING_POS', None)
if pos:
if pos:
- payure_method = PayURe(pos)
- methods.append(payure_method)
+ recurring_payment_method = PayURe(pos)
else:
else:
-
payure
_method = None
+
recurring_payment
_method = None
pos = getattr(settings, 'CLUB_PAYU_POS', None)
if pos:
pos = getattr(settings, 'CLUB_PAYU_POS', None)
if pos:
- payu_method = PayU(pos)
- methods.append(payu_method)
+ single_payment_method = PayU(pos)
else:
else:
- payu_method = None
-
-
-#methods.append(PayPal())
-
-
-method_by_slug = {
- m.slug: m
- for m in methods
-}
+ single_payment_method = None