summaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorBrian Coca <bcoca@ansible.com>2016-03-19 13:09:43 -0700
committerBrian Coca <bcoca@ansible.com>2016-03-19 13:09:43 -0700
commit9cab73b5dd29f4380897ff5de65f3af7a58d80eb (patch)
treef5e21ab05621860f6e3f9f318fdc7c4e9a355fff /files
parent8d8d418e94028a8cc4a047fe76791232325343e3 (diff)
parent4396c26af56d93ed7260fcf5392fd22e83086e33 (diff)
downloadansible-modules-extras-9cab73b5dd29f4380897ff5de65f3af7a58d80eb.tar.gz
Merge pull request #1873 from mscherer/fix_1849
Reindent with_items, fix #1849
Diffstat (limited to 'files')
-rw-r--r--files/blockinfile.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/blockinfile.py b/files/blockinfile.py
index 8e54ae50..25f8cd0e 100644
--- a/files/blockinfile.py
+++ b/files/blockinfile.py
@@ -144,10 +144,10 @@ EXAMPLES = r"""
block: |
{{item.name}} {{item.ip}}
marker: "# {mark} ANSIBLE MANAGED BLOCK {{item.name}}"
- with_items:
- - { name: host1, ip: 10.10.1.10 }
- - { name: host2, ip: 10.10.1.11 }
- - { name: host3, ip: 10.10.1.12 }
+ with_items:
+ - { name: host1, ip: 10.10.1.10 }
+ - { name: host2, ip: 10.10.1.11 }
+ - { name: host3, ip: 10.10.1.12 }
"""