fix for banner idempotent issue (#46001)

* fix for banner issue

* review comments
This commit is contained in:
saichint 2018-09-26 03:18:56 -07:00 committed by Trishna Guha
parent f73996e6eb
commit 2b216384eb

View file

@ -93,12 +93,12 @@ import re
def execute_show_command(module, command):
format = 'json'
format = 'text'
cmds = [{
'command': command,
'output': format,
}]
output = run_commands(module, cmds, check_rc='retry_json')
output = run_commands(module, cmds)
return output