From 9e647ce86f8485ee281820f850f43680c835cb80 Mon Sep 17 00:00:00 2001 From: Nik Nyby Date: Fri, 24 Apr 2015 16:07:53 -0400 Subject: [PATCH] [1.8.x] Added missing comma in LocMemCache example. Backport of 9d6914da668d9a38537d4c29e3601f06dd830477 from master --- docs/topics/cache.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt index c4f34729ea..55ec536dff 100644 --- a/docs/topics/cache.txt +++ b/docs/topics/cache.txt @@ -305,7 +305,7 @@ example:: CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', - 'LOCATION': 'unique-snowflake' + 'LOCATION': 'unique-snowflake', } }