fix autodiscovery

This commit is contained in:
Pascal Vizeli 2016-06-25 20:12:49 +02:00
parent 87c138c559
commit 86ccf26a1a
7 changed files with 13 additions and 4 deletions

View file

@ -21,7 +21,6 @@ from homeassistant.const import EVENT_HOMEASSISTANT_STOP, \
ATTR_SERVICE, \
ATTR_DISCOVERED, \
STATE_UNKNOWN
from homeassistant.loader import get_component
from homeassistant.helpers import discovery
from homeassistant.helpers.entity import Entity
import homeassistant.bootstrap
@ -150,10 +149,8 @@ def system_callback_handler(hass, config, src, *args):
# When devices of this type are found
# they are setup in HA and an event is fired
if found_devices:
component = get_component(component_name)
# HA discovery event
discovery.load_platform(hass, component, DOMAIN, {
discovery.load_platform(hass, component_name, DOMAIN, {
ATTR_DISCOVER_DEVICES: found_devices
}, config)