Update include_vars.py (#36106)

ignore_files is a list. Example was incorrect.
This commit is contained in:
Shirly Radco 2018-05-23 22:35:02 +03:00 committed by Adam Miller
parent d145dfbcf1
commit bf53e441b1

View file

@ -111,7 +111,7 @@ EXAMPLES = """
- name: Include all .yaml files except bastion.yaml (2.3)
include_vars:
dir: vars
ignore_files: bastion.yaml
ignore_files: [bastion.yaml]
extensions: [yaml]
"""