From 8e17c5cccc85cb18eca706baf19935939af0e4f6 Mon Sep 17 00:00:00 2001 From: Phil Hawthorne Date: Sun, 9 Oct 2016 20:42:28 +1100 Subject: [PATCH] Close raw tag on Pushbullet notify example (#1198) Forgot the correct closing tag for the raw tag on the cookbook example --- source/_cookbook/notify_if__new_ha_release.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_cookbook/notify_if__new_ha_release.markdown b/source/_cookbook/notify_if__new_ha_release.markdown index 301021d02f9..df8c38f9dbb 100644 --- a/source/_cookbook/notify_if__new_ha_release.markdown +++ b/source/_cookbook/notify_if__new_ha_release.markdown @@ -49,6 +49,6 @@ automation: data: title: 'New Home Assistant Release' target: 'YOUR_TARGET_HERE' #See Pushbullet component for usage - message: "Home Assistant {% raw %} {{ states.updater.updater.state }} {% raw %} is now available." + message: "Home Assistant {% raw %} {{ states.updater.updater.state }} {% endraw %} is now available." ```