diff --git a/homeassistant/__init__.py b/homeassistant/__init__.py index b1a518c18bd..2cd4c1f228f 100644 --- a/homeassistant/__init__.py +++ b/homeassistant/__init__.py @@ -447,7 +447,7 @@ class State(object): "Invalid entity id encountered: {}. " "Format should be .").format(entity_id)) - self.entity_id = entity_id + self.entity_id = entity_id.lower() self.state = state self.attributes = attributes or {} self.last_updated = dt.datetime.now()