summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/ansible/module_utils/nxos.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/module_utils/nxos.py b/lib/ansible/module_utils/nxos.py
index 32dfd9be26..0378b14954 100644
--- a/lib/ansible/module_utils/nxos.py
+++ b/lib/ansible/module_utils/nxos.py
@@ -251,7 +251,7 @@ class Cli(CliBase):
except ValueError:
raise NetworkError(
msg='unable to load response from device',
- response=responses[index]
+ response=responses[index], command=str(cmd)
)
return responses
@@ -287,5 +287,5 @@ def prepare_commands(commands):
jsonify = lambda x: '%s | json' % x
for cmd in to_list(commands):
if cmd.output == 'json':
- cmd.command = jsonify(cmd)
+ cmd.command_string = jsonify(cmd)
yield cmd