[1.8.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 2a334d7985
commit 9e647ce86f
1 changed files with 1 additions and 1 deletions

View File

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