From ee2472bd429be09f183dc3f5345ad2f03c1c1393 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Sun, 6 Jan 2019 12:45:35 +0100 Subject: Generic changes for python3 from 2to3 --- postgresqleu/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'postgresqleu/settings.py') diff --git a/postgresqleu/settings.py b/postgresqleu/settings.py index 6d538f00..8f8fd1d1 100644 --- a/postgresqleu/settings.py +++ b/postgresqleu/settings.py @@ -261,13 +261,13 @@ if not SECRET_KEY: # Reset admins based on confir params from skins and local ADMINS = ( - (u'{0} webmaster'.format(ORG_NAME), DEFAULT_EMAIL), + ('{0} webmaster'.format(ORG_NAME), DEFAULT_EMAIL), ) MANAGERS = ADMINS # Invoice module # -------------- -INVOICE_TITLE_PREFIX = u'{0} Invoice'.format(ORG_NAME) +INVOICE_TITLE_PREFIX = '{0} Invoice'.format(ORG_NAME) INVOICE_FILENAME_PREFIX = ORG_SHORTNAME.lower() -- cgit v1.2.3