Skip to content
This repository was archived by the owner on Nov 17, 2020. It is now read-only.

Commit e8384a4

Browse files
author
Sebastian Gumprich
committed
replace iteritems with items for python3 support
1 parent 0393778 commit e8384a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/hardening.cnf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ skip-show-database
66
skip-grant-tables
77
{% endif %}
88

9-
{% for (key, value) in mysql_hardening_options.iteritems() %}
9+
{% for (key, value) in mysql_hardening_options.items() %}
1010
{{ key }} = {{ value }}
1111
{% endfor %}
1212

0 commit comments

Comments
 (0)