mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Python 3: there's no dict.iteritems()
This commit is contained in:
@@ -24,6 +24,7 @@ import os
|
||||
from collections import defaultdict
|
||||
from collections import MutableMapping
|
||||
|
||||
from six import iteritems
|
||||
from jinja2.exceptions import UndefinedError
|
||||
|
||||
try:
|
||||
@@ -285,7 +286,7 @@ class VariableManager:
|
||||
|
||||
if self._inventory is not None:
|
||||
all_vars['groups'] = dict()
|
||||
for (group_name, group) in self._inventory.groups.iteritems():
|
||||
for (group_name, group) in iteritems(self._inventory.groups):
|
||||
all_vars['groups'][group_name] = [h.name for h in group.get_hosts()]
|
||||
|
||||
if include_hostvars:
|
||||
|
||||
Reference in New Issue
Block a user