diff options
| author | Tim Graham <timograham@gmail.com> | 2013-10-24 10:33:11 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-24 10:33:11 -0400 |
| commit | 382d324ccc0753962ec31ac23a4bde4fb2b9454e (patch) | |
| tree | d114c5378699de77d6bc3cdf878689e3e069cad3 | |
| parent | 8688f03eef9cf5fd763ba35481ddcff933a60c30 (diff) | |
Added missing newline in docstring; refs #20945.
| -rw-r--r-- | django/templatetags/cache.py | 1 |
1 files changed, 1 insertions, 0 deletions
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',)) |
