fix conditional for py24

This commit is contained in:
jedelman8 2016-04-19 05:43:23 -07:00
parent 30a6984983
commit 8a8025ba2d

View file

@ -465,7 +465,10 @@ def get_cli_body_ssh(command, response, module):
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(command),
error=str(clie))