From e1fd46d6db5c3a940e2ebbc6e1b72a0f4197376a Mon Sep 17 00:00:00 2001 From: Dan Lehman <53992354+DanTLehman@users.noreply.github.com> Date: Sat, 1 Feb 2020 16:42:37 +1100 Subject: [PATCH] Updated wemo lights fix for #31360 (#31369) --- homeassistant/components/wemo/light.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/wemo/light.py b/homeassistant/components/wemo/light.py index 7d2cf9afc43..5988019e66f 100644 --- a/homeassistant/components/wemo/light.py +++ b/homeassistant/components/wemo/light.py @@ -114,7 +114,7 @@ class WemoLight(Light): return { "name": self.wemo.name, "identifiers": {(WEMO_DOMAIN, self.wemo.uniqueID)}, - "model": self.wemo.device_type, + "model": type(self.wemo).__name__, "manufacturer": "Belkin", }