From f78572b4cf73cd852643d01370555b0d05164e92 Mon Sep 17 00:00:00 2001 From: Teagan Glenn Date: Sun, 31 Jul 2016 07:54:51 -0600 Subject: [PATCH] HotFix - Needs to pipe integer to delay (#710) Using the delay template as specified in the documentation worked when the delay template was being implemented, but input_slider is now floating point - update documentation to pipe the float into an integer. --- source/getting-started/scripts.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/getting-started/scripts.markdown b/source/getting-started/scripts.markdown index af6bfa92504..54ae5a15bf0 100644 --- a/source/getting-started/scripts.markdown +++ b/source/getting-started/scripts.markdown @@ -72,7 +72,7 @@ delay: ```yaml # Waits however many minutes input_slider.minute_delay is set to # Valid formats include HH:MM and HH:MM:SS -delay: {% raw %}'00:{{ input_slider.minute_delay }}:00'{% endraw %} +delay: {% raw %}'00:{{ input_slider.minute_delay | int }}:00'{% endraw %} ``` #### {% linkable_title Fire an Event %}