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
This commit is contained in:
John R Barker 2016-11-21 09:37:30 +00:00 committed by Matt Clay
parent ef3699e277
commit b1c6b9272f

View file

@ -55,9 +55,7 @@ options:
- Specify whether to wait for install or uninstall to complete before continuing. - Specify whether to wait for install or uninstall to complete before continuing.
choices: choices:
- true - true
- yes
- false - false
- no
default: false default: false
author: Matt Martz author: Matt Martz
''' '''