From 21d1cd81f7a59a433e5ddef3740ecf3f201321d7 Mon Sep 17 00:00:00 2001 From: Konstantin Manna Date: Sun, 27 Sep 2015 00:12:52 +0200 Subject: [PATCH] bugfix: uncall an uncallable dict --- lib/ansible/modules/extras/clustering/znode | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/extras/clustering/znode b/lib/ansible/modules/extras/clustering/znode index 142836281ea..3b39865b46e 100644 --- a/lib/ansible/modules/extras/clustering/znode +++ b/lib/ansible/modules/extras/clustering/znode @@ -121,7 +121,7 @@ def main(): command_type = 'op' if 'op' in module.params and module.params['op'] is not None else 'state' method = module.params[command_type] - result, result_dict = command_dict[command_type][method]() + result, result_dict = command_dict[command_type][method] zoo.shutdown() if result: