diff options
author | Magnus Hagander | 2019-02-05 22:01:05 +0000 |
---|---|---|
committer | Magnus Hagander | 2019-02-05 22:01:05 +0000 |
commit | a32f4007670330d05a834db1b67687ab8b8c3b34 (patch) | |
tree | 02322951c6ab86287bf26ff7634292df9357f81e /pgcommitfest/settings.py | |
parent | 83edf49e86d2db5d7a75f6c1068d3e62bda99923 (diff) |
Convert all spaces to tabs
Diffstat (limited to 'pgcommitfest/settings.py')
-rw-r--r-- | pgcommitfest/settings.py | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/pgcommitfest/settings.py b/pgcommitfest/settings.py index 1c1a860..575d90f 100644 --- a/pgcommitfest/settings.py +++ b/pgcommitfest/settings.py @@ -6,7 +6,7 @@ TEMPLATE_DEBUG = DEBUG ALLOWED_HOSTS = ['*'] ADMINS = ( - ('webmaster@postgresql.org', 'webmaster@postgresql.org'), + ('webmaster@postgresql.org', 'webmaster@postgresql.org'), ) MANAGERS = ADMINS @@ -98,19 +98,19 @@ MIDDLEWARE_CLASSES = ( ROOT_URLCONF = 'pgcommitfest.urls' TEMPLATES = [{ - 'BACKEND': 'django.template.backends.django.DjangoTemplates', - 'DIRS': ['global_templates'], - 'OPTIONS': { - 'context_processors': [ - 'django.template.context_processors.request', - 'django.contrib.auth.context_processors.auth', - 'django.contrib.messages.context_processors.messages', - ], - 'loaders': [ - 'django.template.loaders.filesystem.Loader', - 'django.template.loaders.app_directories.Loader', - ], - }, + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': ['global_templates'], + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + 'loaders': [ + 'django.template.loaders.filesystem.Loader', + 'django.template.loaders.app_directories.Loader', + ], + }, }] INSTALLED_APPS = ( @@ -123,10 +123,10 @@ INSTALLED_APPS = ( 'django.contrib.admin', # Uncomment the next line to enable admin documentation: # 'django.contrib.admindocs', - 'pgcommitfest.selectable', - 'pgcommitfest.commitfest', - 'pgcommitfest.mailqueue', - 'pgcommitfest.userprofile', + 'pgcommitfest.selectable', + 'pgcommitfest.commitfest', + 'pgcommitfest.mailqueue', + 'pgcommitfest.userprofile', ) AUTHENTICATION_BACKENDS = ( |