1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

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

Backport of 9d6914da66 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',
} }
} }