From 4d2b79156d3c562dc92ef049e5be127b1cfe6ad6 Mon Sep 17 00:00:00 2001 From: Steven Conaway Date: Wed, 21 Jun 2017 00:38:12 -0700 Subject: [PATCH] Change Error Message when Turning off ISY994 Light (#8131) --- homeassistant/components/light/isy994.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/light/isy994.py b/homeassistant/components/light/isy994.py index 10feecca518..78b92fbd145 100644 --- a/homeassistant/components/light/isy994.py +++ b/homeassistant/components/light/isy994.py @@ -56,7 +56,7 @@ class ISYLightDevice(isy.ISYDevice, Light): def turn_off(self, **kwargs) -> None: """Send the turn off command to the ISY994 light device.""" if not self._node.off(): - _LOGGER.debug("Unable to turn on light") + _LOGGER.debug("Unable to turn off light") def turn_on(self, brightness=None, **kwargs) -> None: """Send the turn on command to the ISY994 light device."""