aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--askama_derive/src/parser.rs1
-rw-r--r--testing/templates/for.html2
2 files changed, 2 insertions, 1 deletions
diff --git a/askama_derive/src/parser.rs b/askama_derive/src/parser.rs
index 27a9ed0..c4cb52d 100644
--- a/askama_derive/src/parser.rs
+++ b/askama_derive/src/parser.rs
@@ -296,6 +296,7 @@ named!(target_tuple<Input, Target>, do_parse!(
res
})
)) >>
+ opt!(ws!(tag!(","))) >>
tag!(")") >>
(Target::Tuple(args.unwrap_or_default()))
));
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 %}