From b1c6b9272f299285c12aa0c8e28fa8c39df755e6 Mon Sep 17 00:00:00 2001 From: John R Barker Date: Mon, 21 Nov 2016 09:37:30 +0000 Subject: [PATCH] win_msi - Don't list choices twice (#5684) * win_msi - Dont list choices twise http://docs.ansible.com/ansible/win_msi_module.html shows Choices: True True False False As the yes/no are expanded to true/false by the docs generation * Update win_msi.py --- lib/ansible/modules/windows/win_msi.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/ansible/modules/windows/win_msi.py b/lib/ansible/modules/windows/win_msi.py index 7296541e57a..0c5121f2d01 100644 --- a/lib/ansible/modules/windows/win_msi.py +++ b/lib/ansible/modules/windows/win_msi.py @@ -55,9 +55,7 @@ options: - Specify whether to wait for install or uninstall to complete before continuing. choices: - true - - yes - false - - no default: false author: Matt Martz '''