X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/97c8c6d7c7961976172bece182832d01c9c0fc4b..b39c329ecd604d815de1f772ed9c2e9598db4c46:/src/club/payment_methods.py

diff --git a/src/club/payment_methods.py b/src/club/payment_methods.py
index 7657701ab..1b27bd3e7 100644
--- a/src/club/payment_methods.py
+++ b/src/club/payment_methods.py
@@ -16,7 +16,6 @@ class PaymentMethod(object):
 class PayU(PaymentMethod):
     is_onetime = True
     slug = 'payu'
-    name = 'PayU'
     template_name = 'club/payment/payu.html'
 
     def __init__(self, pos_id):
@@ -35,7 +34,6 @@ class PayU(PaymentMethod):
 
 class PayURe(PaymentMethod):
     slug='payu-re'
-    name = 'PayU (płatność odnawialna)'
     template_name = 'club/payment/payu-re.html'
     is_recurring = True
 
@@ -62,7 +60,6 @@ class PayURe(PaymentMethod):
 
 class PayPal(PaymentMethod):
     slug='paypal'
-    name = 'PayPal (płatność odnawialna)'
     template_name = 'club/payment/paypal.html'
     is_recurring = True
     is_onetime = True