diff options
author | Magnus Hagander | 2018-12-17 13:50:46 +0000 |
---|---|---|
committer | Magnus Hagander | 2018-12-17 13:50:46 +0000 |
commit | 40183d35e63fc7b64fbbca8e1019eb4006ebc598 (patch) | |
tree | f36097fec955c126df680c5e7640c56e72f30e3e /postgresqleu/settings.py | |
parent | 82a3330d48f11111c31977470f3d9412ce14cfda (diff) |
Rename pgeuinvoice.py to baseinvoice.py
It no longer has any pgeu specifics in it.
Diffstat (limited to 'postgresqleu/settings.py')
-rw-r--r-- | postgresqleu/settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/postgresqleu/settings.py b/postgresqleu/settings.py index 26ce67cf..7ef1d9b0 100644 --- a/postgresqleu/settings.py +++ b/postgresqleu/settings.py @@ -136,8 +136,8 @@ MEMBERSHIP_COUNTRY_VALIDATOR = None # Invoice module # -------------- -INVOICE_PDF_BUILDER = 'postgresqleu.util.misc.pgeuinvoice.BaseInvoice' -REFUND_PDF_BUILDER = 'postgresqleu.util.misc.pgeuinvoice.BaseRefund' +INVOICE_PDF_BUILDER = 'postgresqleu.util.misc.baseinvoice.BaseInvoice' +REFUND_PDF_BUILDER = 'postgresqleu.util.misc.baseinvoice.BaseRefund' # Paypal sandbox configuration PAYPAL_BASEURL = 'https://www.paypal.com/cgi-bin/webscr' |