From 94b390af6606b7c7719e41788f47597fbf6c3768 Mon Sep 17 00:00:00 2001 From: Tom Harris Date: Wed, 21 Feb 2018 00:22:48 -0500 Subject: [PATCH] Correct common_attributes usage --- homeassistant/components/insteon_plm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/insteon_plm.py b/homeassistant/components/insteon_plm.py index ff12ff33a8f..5b7cf5bfb95 100644 --- a/homeassistant/components/insteon_plm.py +++ b/homeassistant/components/insteon_plm.py @@ -104,7 +104,7 @@ def async_setup(hass, config): def common_attributes(entity): """Return the device state attributes.""" attributes = { - 'INSTEON Address': entity.address.human, + 'INSTEON Address': entity.address, 'INSTEON Group': entity.group } return attributes