settings: fix indentation for CACHES

This commit is contained in:
German Larrain 2014-07-17 20:54:49 -04:00
parent a2eecedaa0
commit a2116e721e

View File

@ -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. # 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 # memcacheify is what's used in Production
CACHES = { CACHES = {
'default': { 'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
'LOCATION': '' 'LOCATION': ''
} }
} }
########## END CACHING ########## END CACHING