diff options
author | Magnus Hagander | 2019-01-06 11:45:35 +0000 |
---|---|---|
committer | Magnus Hagander | 2019-01-10 19:44:30 +0000 |
commit | ee2472bd429be09f183dc3f5345ad2f03c1c1393 (patch) | |
tree | b6031e83a5f8cde50aa72d26ec2e1e19826b7ba2 /postgresqleu/settings.py | |
parent | e6e526e5d4e2c483e9a7c9736a031c33a4339eb9 (diff) |
Generic changes for python3 from 2to3
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 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() |