summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorJon Walsh <jon@codetree.com.au>2015-03-19 14:09:34 +0700
committerTim Graham <timograham@gmail.com>2015-03-19 07:22:21 -0400
commit2b267a70a16e2cb12075e75f7626effbe6811d5f (patch)
tree102acc05f56ad29e46bda5adaf4b9b79b459f967 /django
parente3c9412d86c3c394e2604e63f3b51c102ae3e3d7 (diff)
[1.8.x] Fixed typo in escape_filter() docstring.
Backport of 8d90489fe0049049f1f13c737ac51a24abf1efc3 from master
Diffstat (limited to 'django')
-rw-r--r--django/template/defaultfilters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/template/defaultfilters.py b/django/template/defaultfilters.py
index fe71459358..a3a9004494 100644
--- a/django/template/defaultfilters.py
+++ b/django/template/defaultfilters.py
@@ -439,7 +439,7 @@ def cut(value, arg):
@stringfilter
def escape_filter(value):
"""
- Marks the value as a string that should not be auto-escaped.
+ Marks the value as a string that should be auto-escaped.
"""
return mark_for_escaping(value)