From 9aa88819a5c7d2560ebab58c693dbf0d3af12d84 Mon Sep 17 00:00:00 2001 From: Robbie Trencheny Date: Sun, 23 Oct 2016 20:33:49 -0700 Subject: [PATCH] Fix a spelling problem on user-facing error --- homeassistant/helpers/condition.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/helpers/condition.py b/homeassistant/helpers/condition.py index bfc637cf946..a6db4f9150d 100644 --- a/homeassistant/helpers/condition.py +++ b/homeassistant/helpers/condition.py @@ -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'