Fix a spelling problem on user-facing error

pull/3643/merge
Robbie Trencheny 2016-10-23 20:33:49 -07:00 committed by GitHub
parent 626763a7c3
commit 9aa88819a5
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ def async_template(hass, value_template, variables=None):
try:
value = value_template.async_render(variables)
except TemplateError as ex:
_LOGGER.error('Error duriong template condition: %s', ex)
_LOGGER.error('Error during template condition: %s', ex)
return False
return value.lower() == 'true'