From bb40d9820ffcb5c4cb0bc3c5549fa284a774c250 Mon Sep 17 00:00:00 2001 From: Nik Nyby Date: Fri, 24 Apr 2015 16:07:53 -0400 Subject: [PATCH] [1.7.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 956fa438dc..d364be205d 100644 --- a/docs/topics/cache.txt +++ b/docs/topics/cache.txt @@ -304,7 +304,7 @@ example:: CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', - 'LOCATION': 'unique-snowflake' + 'LOCATION': 'unique-snowflake', } }