diff --git a/homeassistant/helpers/condition.py b/homeassistant/helpers/condition.py
index bfc637cf9460cac59f6419bb3b63b3709eb60bd3..a6db4f9150d24f5cf9b1b361415fbde3462eb29b 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'