From a2116e721e299b9e55e10003d5c7cd5abb0bfcce Mon Sep 17 00:00:00 2001 From: German Larrain Date: Thu, 17 Jul 2014 20:54:49 -0400 Subject: [PATCH] settings: fix indentation for `CACHES` --- .../{{cookiecutter.repo_name}}/config/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/config/settings.py b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/config/settings.py index bd798cb8..3aa76b8b 100644 --- a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/config/settings.py +++ b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/config/settings.py @@ -124,9 +124,9 @@ class Common(Configuration): # Do this here because thanks to django-pylibmc-sasl and pylibmc memcacheify is painful to install on windows. # memcacheify is what's used in Production CACHES = { - 'default': { - 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', - 'LOCATION': '' + 'default': { + 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', + 'LOCATION': '' } } ########## END CACHING