From 06efe3a2f635efa4b0c84438f58cd4bdebbcfe3b Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Fri, 31 Jan 2020 14:01:25 -0800 Subject: [PATCH] Fix wemo device types for lights (#31360) --- 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 a615b3f5dfd..7d2cf9afc43 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.model_name, + "model": self.wemo.device_type, "manufacturer": "Belkin", }