Fix mixed single quotes in automation example (#9597)

This commit is contained in:
Robert 2019-06-09 19:22:49 +02:00 committed by Klaas Schoute
parent 8f8c5792f8
commit 91f4f09833

View File

@ -99,7 +99,7 @@ automation:
action:
- service: notify.notify
data_template:
title: '{{state_attr('binary_sensor.meteoalarm', 'headline')}}'
title: "{{state_attr('binary_sensor.meteoalarm', 'headline')}}"
message: "{{state_attr('binary_sensor.meteoalarm', 'description')}} is effective on {{state_attr('binary_sensor.meteoalarm', 'effective')}}"
```
{% endraw %}