Skip to content

Commit

Permalink
Use .items() instead of .iteritems()
Browse files Browse the repository at this point in the history
  • Loading branch information
colinodell committed Oct 16, 2019
1 parent bb07cac commit 8c6d0ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/newrelic.ini.j2
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ extension = "newrelic.so"

[newrelic]

{% for key, value in newrelic_php_config_combined.iteritems() -%}
{% for key, value in newrelic_php_config_combined.items() -%}
newrelic.{{ key }} = {{ value | to_nice_json }}
{% endfor -%}

0 comments on commit 8c6d0ed

Please sign in to comment.