Added missing comma in LocMemCache example.

This commit is contained in:
Nik Nyby 2015-04-24 16:07:53 -04:00 committed by Tim Graham
parent 8a1824d465
commit 9d6914da66
1 changed files with 1 additions and 1 deletions

View File

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