[1.7.x] Added missing comma in LocMemCache example.

Backport of 9d6914da668d9a38537d4c29e3601f06dd830477 from master
This commit is contained in:
Nik Nyby 2015-04-24 16:07:53 -04:00 committed by Tim Graham
parent 0b7d737d9f
commit bb40d9820f

View File

@ -304,7 +304,7 @@ example::
CACHES = { CACHES = {
'default': { 'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
'LOCATION': 'unique-snowflake' 'LOCATION': 'unique-snowflake',
} }
} }