From c85d794d833c3a2f4edec5b8a917342f8d862352 Mon Sep 17 00:00:00 2001 From: Peter Sprygada Date: Fri, 24 Feb 2017 13:23:31 -0500 Subject: [PATCH] fix argument name in nxos shared lib (#21912) fixes #21895 --- lib/ansible/module_utils/nxos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/module_utils/nxos.py b/lib/ansible/module_utils/nxos.py index bf08a4b62ee..6fd3a2960c4 100644 --- a/lib/ansible/module_utils/nxos.py +++ b/lib/ansible/module_utils/nxos.py @@ -306,7 +306,7 @@ class Nxapi: return responses - def load_config(self, config): + def load_config(self, commands): """Sends the ordered set of commands to the device """ cmds = ['configure terminal']