From 000d3d4fdec1e1cf936e75afc43c7ab43e7d808a Mon Sep 17 00:00:00 2001 From: Rick van Hattem Date: Tue, 20 Aug 2019 23:27:59 +0200 Subject: [PATCH] [bugfix] Exception if vendor's servers are currently unavailable (#26093) --- homeassistant/components/evohome/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/evohome/__init__.py b/homeassistant/components/evohome/__init__.py index f0e7a26e1f5..05308782362 100644 --- a/homeassistant/components/evohome/__init__.py +++ b/homeassistant/components/evohome/__init__.py @@ -273,10 +273,10 @@ class EvoBroker: else: self.timers["statusUpdated"] = utcnow() - _LOGGER.debug("Status = %s", status) + _LOGGER.debug("Status = %s", status) - # inform the evohome devices that state data has been updated - async_dispatcher_send(self.hass, DOMAIN, {"signal": "refresh"}) + # inform the evohome devices that state data has been updated + async_dispatcher_send(self.hass, DOMAIN, {"signal": "refresh"}) class EvoDevice(Entity):