summaryrefslogtreecommitdiff
path: root/network/nxos
diff options
context:
space:
mode:
authorGabriele <gabrielegerbino@gmail.com>2016-09-30 16:20:51 -0400
committerPeter Sprygada <privateip@users.noreply.github.com>2016-09-30 16:20:51 -0400
commitc4941285cb49fe087147e9d091dc76b39f700825 (patch)
tree3bd00c8b63f713ec9e11db80736e2d88ad4f96ab /network/nxos
parent33b8a897022fbc966a8e82d0a31a144cfb017806 (diff)
downloadansible-modules-core-c4941285cb49fe087147e9d091dc76b39f700825.tar.gz
Fixing nxos_portchannel (#5019)
Diffstat (limited to 'network/nxos')
-rw-r--r--network/nxos/nxos_portchannel.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/network/nxos/nxos_portchannel.py b/network/nxos/nxos_portchannel.py
index 68af16c8..48985a13 100644
--- a/network/nxos/nxos_portchannel.py
+++ b/network/nxos/nxos_portchannel.py
@@ -343,10 +343,7 @@ def execute_config_command(commands, module):
def get_cli_body_ssh(command, response, module):
try:
- if isinstance(response[0], str):
- body = [json.loads(response[0])]
- else:
- body = response
+ body = [json.loads(response[0])]
except ValueError:
module.fail_json(msg='Command does not support JSON output',
command=command)
@@ -375,7 +372,7 @@ def execute_show(cmds, module, command_type=None):
module.cli.add_commands(cmds, output=command_type)
response = module.cli.run_commands()
else:
- module.cli.add_commands(cmds, output=command_type)
+ module.cli.add_commands(cmds, raw=True)
response = module.cli.run_commands()
except ShellError:
clie = get_exception()