Python 3: there's no dict.iteritems()
This commit is contained in:
parent
0624797375
commit
6d4618f46f
1 changed files with 2 additions and 1 deletions
|
@ -24,6 +24,7 @@ import os
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from collections import MutableMapping
|
from collections import MutableMapping
|
||||||
|
|
||||||
|
from six import iteritems
|
||||||
from jinja2.exceptions import UndefinedError
|
from jinja2.exceptions import UndefinedError
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
@ -285,7 +286,7 @@ class VariableManager:
|
||||||
|
|
||||||
if self._inventory is not None:
|
if self._inventory is not None:
|
||||||
all_vars['groups'] = dict()
|
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()]
|
all_vars['groups'][group_name] = [h.name for h in group.get_hosts()]
|
||||||
|
|
||||||
if include_hostvars:
|
if include_hostvars:
|
||||||
|
|
Loading…
Reference in a new issue