diff --git a/strategy/linear.py b/strategy/linear.py index f43c04d..f5e5fea 100644 --- a/strategy/linear.py +++ b/strategy/linear.py @@ -116,7 +116,10 @@ class StrategyModule(LINEAR.StrategyModule): _play_context = copy.deepcopy(play_context) - groups = self._inventory.get_group_dict() + try: + groups = self._inventory.get_groups_dict() + except AttributeError: + groups = self._inventory.get_group_dict() physical_hosts = groups.get('hosts', groups.get('all', {})) physical_host_addrs = {} for physical_host in physical_hosts: