From b59fa134be844a69990fa1b384f7470013b009ef Mon Sep 17 00:00:00 2001 From: hiyokotaisa Date: Fri, 17 Jan 2020 16:41:43 +0900 Subject: [PATCH] Fix indent on example of set_fact module (#66554) Fixed incorrect indent on example section in set_fact module's example section --- lib/ansible/modules/utilities/logic/set_fact.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/utilities/logic/set_fact.py b/lib/ansible/modules/utilities/logic/set_fact.py index cbe610c3633..5ee512cbd9b 100644 --- a/lib/ansible/modules/utilities/logic/set_fact.py +++ b/lib/ansible/modules/utilities/logic/set_fact.py @@ -62,9 +62,9 @@ EXAMPLES = r''' # Example setting host facts using complex arguments - set_fact: - one_fact: something - other_fact: "{{ local_var * 2 }}" - another_fact: "{{ some_registered_var.results | map(attribute='ansible_facts.some_fact') | list }}" + one_fact: something + other_fact: "{{ local_var * 2 }}" + another_fact: "{{ some_registered_var.results | map(attribute='ansible_facts.some_fact') | list }}" # Example setting facts so that they will be persisted in the fact cache - set_fact: