From 38318ed15ff3886c7e734cd7c922261367cad91e Mon Sep 17 00:00:00 2001 From: Steven Looman Date: Sat, 1 Sep 2018 10:09:22 +0200 Subject: [PATCH] Ensure config_flow is imported --- homeassistant/components/igd/__init__.py | 1 + homeassistant/config_entries.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/igd/__init__.py b/homeassistant/components/igd/__init__.py index 191b8c1fb72..305ac993b87 100644 --- a/homeassistant/components/igd/__init__.py +++ b/homeassistant/components/igd/__init__.py @@ -26,6 +26,7 @@ from homeassistant.components.discovery import DOMAIN as DISCOVERY_DOMAIN from .const import CONF_ENABLE_PORT_MAPPING, CONF_ENABLE_SENSORS from .const import DOMAIN from .const import LOGGER as _LOGGER +import homeassistant.components.igd.config_flow # register the handler REQUIREMENTS = ['async-upnp-client==0.12.4'] diff --git a/homeassistant/config_entries.py b/homeassistant/config_entries.py index a52484b6941..93c904d3b91 100644 --- a/homeassistant/config_entries.py +++ b/homeassistant/config_entries.py @@ -414,7 +414,6 @@ class ConfigEntries: Handler key is the domain of the component that we want to set up. """ component = getattr(self.hass.components, handler_key) - _LOGGER.debug('Handler key: %s', handler_key) handler = HANDLERS.get(handler_key) if handler is None: