From 34f8fb8e2b8b6b7e5e7b9f52bb7ef24ed2c9dd0a Mon Sep 17 00:00:00 2001 From: Seth Vidal Date: Mon, 25 Feb 2013 17:07:47 -0500 Subject: [PATCH] command: make sure that all _handle_aliases() calls returns {} module_common: also work if there are no aliases (shell, command, etc) modules --- command | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command b/command index 13dbb089f63..4e43b9fa3c9 100644 --- a/command +++ b/command @@ -129,7 +129,7 @@ def main(): class CommandModule(AnsibleModule): def _handle_aliases(self): - pass + return {} def _check_invalid_arguments(self): pass