try and set this section of the script to raw so jinja does not expand the {{s

This commit is contained in:
Kevin Fenzi 2016-08-11 21:36:38 +00:00
parent 2311e08470
commit 53b83e5888

View file

@ -292,9 +292,10 @@ final_output_list_unknown]:
page.text() page.text()
page.save(final_string, summary = time) page.save(final_string, summary = time)
{% raw %}
note = "{{admon/note | Last Updated : %s UTC. %s active contributors \ note = "{{admon/note | Last Updated : %s UTC. %s active contributors \
listed here against %s total.}}" % (time, len(output), len(people_list)) listed here against %s total.}}" % (time, len(output), len(people_list))
{% endraw %}
page = site.Pages['Ambassadors/MembershipService/VerificationStats'] page = site.Pages['Ambassadors/MembershipService/VerificationStats']
page.text() page.text()
page.save(note, summary = time) page.save(note, summary = time)