From c69b9aefecb45513cfde109bdd1d330756b25dad Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 21 Oct 2014 23:51:23 -0700 Subject: [PATCH] Bug fix: group not always loaded --- homeassistant/bootstrap.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/homeassistant/bootstrap.py b/homeassistant/bootstrap.py index f6d7047c7e0..6d0fead6293 100644 --- a/homeassistant/bootstrap.py +++ b/homeassistant/bootstrap.py @@ -117,6 +117,10 @@ def from_config_dict(config, hass=None): break + # Make sure we load groups if not in list yet. + if not group_added: + validated.append(group.DOMAIN) + # Setup the components if core_components.setup(hass, config): logger.info("Home Assistant core initialized")