Merge pull request #119 from glarrain/patch-2

settings: fix indentation for `CACHES`
This commit is contained in:
Daniel Greenfeld 2014-07-18 09:45:43 -07:00
commit ae71813dd2

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