From ad23613cdc541dbc64bc88bc7433ceb8d4e2b55b Mon Sep 17 00:00:00 2001 From: Heiko Rothe Date: Sun, 15 Jan 2017 22:45:54 +0100 Subject: [PATCH] Fixed the lannouncer platform get_service method (#5352) --- homeassistant/components/notify/lannouncer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/notify/lannouncer.py b/homeassistant/components/notify/lannouncer.py index be1bc636fd6..4d038faeb9a 100644 --- a/homeassistant/components/notify/lannouncer.py +++ b/homeassistant/components/notify/lannouncer.py @@ -29,7 +29,7 @@ PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({ _LOGGER = logging.getLogger(__name__) -def get_service(hass, config): +def get_service(hass, config, discovery_info=None): """Get the Lannouncer notification service.""" host = config.get(CONF_HOST) port = config.get(CONF_PORT)