From e2cf3b6e7aa28b85fdcfd1bb0a77b41d46c38924 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Mon, 19 Jun 2017 19:08:36 -0400 Subject: [PATCH] fixed cg signature --- lib/ansible/plugins/inventory/constructed_groups.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/inventory/constructed_groups.py b/lib/ansible/plugins/inventory/constructed_groups.py index 5f4623e24fa..a7315b39f14 100644 --- a/lib/ansible/plugins/inventory/constructed_groups.py +++ b/lib/ansible/plugins/inventory/constructed_groups.py @@ -74,7 +74,7 @@ class InventoryModule(BaseInventoryPlugin): return valid - def parse(self, inventory, loader, path): + def parse(self, inventory, loader, path, cache=False): ''' parses the inventory file ''' super(InventoryModule, self).parse(inventory, loader, path)