Fix nxos_snapshot compare (#41386)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
pull/41745/head
Trishna Guha 7 years ago committed by GitHub
parent 63ae1a9acd
commit 1998707eda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -356,7 +356,9 @@ def main():
snapshot1 = module.params['snapshot1']
snapshot2 = module.params['snapshot2']
compare_option = module.params['compare_option']
command = 'show snapshot compare {0} {1} {2}'.format(snapshot1, snapshot2, compare_option)
command = 'show snapshot compare {0} {1}'.format(snapshot1, snapshot2)
if compare_option:
command += ' {0}'.format(compare_option)
content = execute_show_command(command, module)[0]
if content:
write_on_file(content, comparison_results_file, module)

Loading…
Cancel
Save