We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 499c715 commit aa8a985Copy full SHA for aa8a985
django/template/__init__.py
@@ -422,7 +422,7 @@ def next_space_index(subject, i):
422
i += 1
423
if i >= len(subject):
424
raise TemplateSyntaxError("Searching for value. Unexpected end of string in column %d: %s" % (i, subject))
425
- i += 1
+ i += 1
426
return i
427
428
@@ -811,7 +811,7 @@ def __repr__(self):
811
812
def render(self, context):
813
return self.s
814
-
+
815
def _render_value_in_context(value, context):
816
"""
817
Converts any value to a string to become part of a rendered template. This
0 commit comments