summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriele <gabrielegerbino@gmail.com>2016-11-08 02:46:41 +0100
committerPeter Sprygada <privateip@users.noreply.github.com>2016-11-07 20:46:41 -0500
commitaf7cb72577d547b9a42369dd12e9399df3cb78a6 (patch)
tree445d9da4f7280a2463dba67889c566c2a8cbe627
parent30f08d05dfe211fd938d332dac218b77fd10db1e (diff)
downloadansible-modules-core-af7cb72577d547b9a42369dd12e9399df3cb78a6.tar.gz
Adding missing param (#5447)
-rw-r--r--network/nxos/nxos_portchannel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/network/nxos/nxos_portchannel.py b/network/nxos/nxos_portchannel.py
index 768bb6ad..c1f1ee10 100644
--- a/network/nxos/nxos_portchannel.py
+++ b/network/nxos/nxos_portchannel.py
@@ -331,7 +331,7 @@ def execute_config_command(commands, module):
error=str(clie), commands=commands)
except AttributeError:
try:
- module.config.load_config(commands)
+ output = module.config.load_config(commands)
except NetworkError:
clie = get_exception()
module.fail_json(msg='Error sending CLI commands',