From 73c3f35112daea0320294ada5da7f8e316fcbda3 Mon Sep 17 00:00:00 2001 From: Peter Sprygada Date: Mon, 4 Apr 2016 15:59:38 -0400 Subject: [PATCH] fixes ansible/ansible-modules-core#3304 --- 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 06317a3fb0..83a340bb16 100644 --- a/lib/ansible/module_utils/nxos.py +++ b/lib/ansible/module_utils/nxos.py @@ -71,7 +71,7 @@ class Nxapi(object): self.url = None self._nxapi_auth = None - def _get_body(self, commands, command_type, encoding, version='1.2', chunk='0', sid=None): + def _get_body(self, commands, command_type, encoding, version='1.0', chunk='0', sid=None): """Encodes a NXAPI JSON request message """ if isinstance(commands, (list, set, tuple)):