summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2011-06-16 16:33:54 +0000
committerJannis Leidel <jannis@leidel.info>2011-06-16 16:33:54 +0000
commitc80914d0d19ba51ab14d9de09ae2e80824aefc03 (patch)
tree2e5974d58a9173c3e8a484e40719cbbfb32c7c6d
parenta1991e37f4757ea1f4a195296dbd586e4a5c90ee (diff)
Fixed #16221 -- Corrected doc string example in comments permalink template tag. Thanks, Thejaswi Puthraya.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16411 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/contrib/comments/templatetags/comments.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/comments/templatetags/comments.py b/django/contrib/comments/templatetags/comments.py
index 7962a40d97..024c4f658e 100644
--- a/django/contrib/comments/templatetags/comments.py
+++ b/django/contrib/comments/templatetags/comments.py
@@ -323,7 +323,7 @@ def get_comment_permalink(comment, anchor_pattern=None):
named anchor to be appended to the end of the URL.
Example::
- {{ get_comment_permalink comment "#c%(id)s-by-%(user_name)s" }}
+ {% get_comment_permalink comment "#c%(id)s-by-%(user_name)s" %}
"""
if anchor_pattern: