From: Dave Page Date: Wed, 14 Jun 2023 11:53:03 +0000 (+0100) Subject: Fix class/function names. X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=5a8a7029020cc2b038a36569441662d0f23f59d3;p=pguk-website.git Fix class/function names. --- diff --git a/code/selinvoices.py b/code/selinvoices.py index ba553fc..c388cd1 100644 --- a/code/selinvoices.py +++ b/code/selinvoices.py @@ -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