From 25fafc1280f7f49d289cdb7071899bafa646ee01 Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Wed, 27 Sep 2017 13:04:08 +0200 Subject: [PATCH] Remove stray " and replace include: with import_tasks: (cherry picked from commit 22fda12ac190f0fc14078c9f4403659be65698fa) --- CHANGELOG.md | 1 + lib/ansible/modules/utilities/logic/import_tasks.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49962703fc..5a4b8a0134 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,7 @@ Ansible Changes By Release * updated api doc example to match api changes * corrected issues with slack callback plugin * it is import_playbook .. not import_plays .. docs now reflect this +* fixed typo and missed include/import conversion in import_tasks docs diff --git a/lib/ansible/modules/utilities/logic/import_tasks.py b/lib/ansible/modules/utilities/logic/import_tasks.py index d7770eb1fc..25aa51fffb 100644 --- a/lib/ansible/modules/utilities/logic/import_tasks.py +++ b/lib/ansible/modules/utilities/logic/import_tasks.py @@ -49,7 +49,7 @@ EXAMPLES = """ - debug: msg: task1 - - include: stuff.yml" + - import_tasks: stuff.yml when: hostvar is defined """