From ec18d14eb6f5db72431439eba04c84f739a7dc66 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 27 Sep 2018 12:39:16 +0200 Subject: [PATCH] Update discovery.py --- homeassistant/components/hassio/discovery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/hassio/discovery.py b/homeassistant/components/hassio/discovery.py index c8bece769..cead47e2e 100644 --- a/homeassistant/components/hassio/discovery.py +++ b/homeassistant/components/hassio/discovery.py @@ -41,7 +41,7 @@ def async_setup_discovery(hass, hassio): async def async_discovery_start_handler(event): """Process all exists discovery on startup.""" try: - data = await hassio.get_services_discovery(uuid) + data = await hassio.receive_services_discovery() except HassioAPIError as err: _LOGGER.error( "Can't read discover %s info: %s", uuid, err)