Comment 3 for bug 1861296

Revision history for this message
Oliver Walsh (owalsh) wrote :

Problem was this use of jinja2:

{% set line = "foo" %}
{% for something in something %}
{% set line = line ~ 'bar' %}
{% endfor %}

The 2nd set does not alter line in the outer scope.