Skip to content

Commit

Permalink
Fix a spelling problem on user-facing error
Browse files Browse the repository at this point in the history
  • Loading branch information
robbiet480 authored Oct 24, 2016
1 parent 626763a commit 9aa8881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/helpers/condition.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 9aa8881

Please sign in to comment.