diff options
Diffstat (limited to '')
-rw-r--r-- | testing/templates/for.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/templates/for.html b/testing/templates/for.html index f749752..3d4533b 100644 --- a/testing/templates/for.html +++ b/testing/templates/for.html @@ -1,6 +1,6 @@ {% for s in strings %} {{- loop.index0 }}. {{ s }}{% if loop.first %} (first){% endif %} {% endfor %} -{% for (s1, s2) in tuple_strings %} +{% for (s1, s2, ) in tuple_strings %} {{- loop.index0 }}. {{ s1 }},{{ s2 }}{% if loop.first %} (first){% endif %} {% endfor %} |