Commit 6d4618f4 by Marius Gedminas

Python 3: there's no dict.iteritems()

parent 06247973
...@@ -24,6 +24,7 @@ import os ...@@ -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: ...@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment