Fix class/function names.
authorDave Page <dpage@pgadmin.org>
Wed, 14 Jun 2023 11:53:03 +0000 (12:53 +0100)
committerDave Page <dpage@pgadmin.org>
Wed, 14 Jun 2023 11:53:03 +0000 (12:53 +0100)
code/selinvoices.py

index ba553fca454f8a1908e0180aab1598fe2bc4c3f7..c388cd15bf091765552e2266ee7a1f13b1271b3b 100644 (file)
@@ -5,7 +5,7 @@ from django.conf import settings
 from postgresqleu.util.misc.baseinvoice import BaseInvoice, BaseRefund
 
 
-class PGEUBase(object):
+class SELBase(object):
     logo = os.path.join(settings.PROJECT_ROOT, '../media/img/PostgreSQL_logo.1color_blue.300x300.png')
     headertext = """Slonik Enterprises Ltd.
 128 City Road  
@@ -30,9 +30,9 @@ Discount for prepayment: None.
 """
 
 
-class PGEUInvoice(PGEUBase, BaseInvoice):
+class SELInvoice(SELBase, BaseInvoice):
     pass
 
 
-class PGEURefund(PGEUBase, BaseRefund):
+class SELRefund(SELBase, BaseRefund):
     pass