From 382d324ccc0753962ec31ac23a4bde4fb2b9454e Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 24 Oct 2013 10:33:11 -0400 Subject: [PATCH] Added missing newline in docstring; refs #20945. --- django/templatetags/cache.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/templatetags/cache.py b/django/templatetags/cache.py index 86555af45b..eb147b4210 100644 --- a/django/templatetags/cache.py +++ b/django/templatetags/cache.py @@ -71,6 +71,7 @@ def do_cache(parser, token): Optionally the cache to use may be specified thus:: {% cache .... using="cachename" %} + Each unique set of arguments will result in a unique cache entry. """ nodelist = parser.parse(('endcache',))