Skip to content

Commit

Permalink
Merge pull request #11 from d-matt/fix-iteritems
Browse files Browse the repository at this point in the history
Use items() instead of iteritems() in templates
  • Loading branch information
steenzout authored Oct 10, 2018
2 parents 458da11 + f8aa2a7 commit a4ade23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/grafana-server.j2
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# {{ ansible_managed }}
{% for parameter, value in grafana_default.iteritems() %}
{% for parameter, value in grafana_default.items() %}
{{ parameter | upper }}={{ value }}
{% endfor %}

0 comments on commit a4ade23

Please sign in to comment.