fix iosxr commands to encode json (#23346)

the command dict in the iosxr module_utils wasn't encoding the request
to json.  this patch will fix that problem
This commit is contained in:
Peter Sprygada 2017-04-06 10:44:21 -04:00 committed by John R Barker
commit f0008248d4
3 changed files with 2 additions and 3 deletions

View file

@ -163,7 +163,6 @@ def parse_commands(module, warnings):
msg='iosxr_command does not support running config mode '
'commands. Please use iosxr_config instead'
)
commands[index] = module.jsonify(item)
return commands
def main():