Changed iteritems() calls to items()

This commit is contained in:
Gregory Ballantine 2019-01-24 13:40:54 -05:00
parent 091f99ce64
commit f3d844e782

View File

@ -8,7 +8,7 @@
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.
{%- for key, value in nsswitch.config.iteritems() %}
{%- for key, value in nsswitch.config.items() %}
{{ key }}: {{ value }}
{%- endfor %}