diff options
Diffstat (limited to 'tests/flatpages_tests/settings.py')
| -rw-r--r-- | tests/flatpages_tests/settings.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/flatpages_tests/settings.py b/tests/flatpages_tests/settings.py index ad888f9d95..ea36b2bbee 100644 --- a/tests/flatpages_tests/settings.py +++ b/tests/flatpages_tests/settings.py @@ -1,11 +1,11 @@ import os -FLATPAGES_TEMPLATES = [{ - 'BACKEND': 'django.template.backends.django.DjangoTemplates', - 'DIRS': [os.path.join(os.path.dirname(__file__), 'templates')], - 'OPTIONS': { - 'context_processors': ( - 'django.contrib.auth.context_processors.auth', - ), - }, -}] +FLATPAGES_TEMPLATES = [ + { + "BACKEND": "django.template.backends.django.DjangoTemplates", + "DIRS": [os.path.join(os.path.dirname(__file__), "templates")], + "OPTIONS": { + "context_processors": ("django.contrib.auth.context_processors.auth",), + }, + } +] |
