From ae7aaeb1ed9f37ff97270751db871f181115009e Mon Sep 17 00:00:00 2001 From: Phil <36015321+pnbruckner@users.noreply.github.com> Date: Thu, 9 Aug 2018 14:04:47 -0500 Subject: [PATCH] trigger.entity_id should not be quoted (#5985) --- source/_docs/scripts.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/scripts.markdown b/source/_docs/scripts.markdown index f11861ad1ac..41579318f06 100644 --- a/source/_docs/scripts.markdown +++ b/source/_docs/scripts.markdown @@ -102,7 +102,7 @@ When using `wait_template` within an automation `trigger.entity_id` is supported {% raw %} ```yaml -- wait_template: "{{ is_state('trigger.entity_id', 'on') }}" +- wait_template: "{{ is_state(trigger.entity_id, 'on') }}" ``` {% endraw %}