fix conditional for py24
This commit is contained in:
parent
026ddfcc46
commit
67d416576f
1 changed files with 4 additions and 2 deletions
|
@ -114,8 +114,10 @@ def get_cli_body_ssh(command, response):
|
|||
|
||||
def execute_show(cmds, module, command_type=None):
|
||||
try:
|
||||
response = module.execute(cmds,
|
||||
command_type=command_type) if command_type else module.execute(cmds)
|
||||
if command_type:
|
||||
response = module.execute(cmds, command_type=command_type)
|
||||
else:
|
||||
response = module.execute(cmds)
|
||||
except ShellError, clie:
|
||||
module.fail_json(msg='Error sending {0}'.format(cmds),
|
||||
error=str(clie))
|
||||
|
|
Loading…
Reference in a new issue