summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Moennich <adrian@planetcoding.net>2017-01-09 00:08:40 +0100
committerAdrian Moennich <adrian@planetcoding.net>2017-01-09 00:08:40 +0100
commit462b7868a2f83e1660291e47a8da5452e1d1fd19 (patch)
treef19038379df107491a6883a55dc5113ef8b86068
parent76a8b5e85f0b7ea8d9b23d93c5a113c3aac0d63f (diff)
downloadjinja2-462b7868a2f83e1660291e47a8da5452e1d1fd19.tar.gz
Fix another invalid \s escale sequence
-rw-r--r--jinja2/ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jinja2/ext.py b/jinja2/ext.py
index 03c63e1..75e1f3b 100644
--- a/jinja2/ext.py
+++ b/jinja2/ext.py
@@ -87,7 +87,7 @@ class Extension(with_metaclass(ExtensionRegistry, object)):
def filter_stream(self, stream):
"""It's passed a :class:`~jinja2.lexer.TokenStream` that can be used
to filter tokens returned. This method has to return an iterable of
- :class:`~jinja2.lexer.Token`\s, but it doesn't have to return a
+ :class:`~jinja2.lexer.Token`\\s, but it doesn't have to return a
:class:`~jinja2.lexer.TokenStream`.
In the `ext` folder of the Jinja2 source distribution there is a file