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.
This commit is contained in:
Teagan Glenn 2016-07-31 07:54:51 -06:00 committed by Fabian Affolter
parent ee103d6746
commit f78572b4cf

View File

@ -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 %}