From e0b362ef3bb0f7550b5a2f912b8084ba0fb11789 Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Fri, 17 Jun 2022 12:13:16 +0200 Subject: [PATCH] Fix zha log message (#73626) --- homeassistant/components/zha/core/gateway.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/zha/core/gateway.py b/homeassistant/components/zha/core/gateway.py index 642a5b3ec55..02b2b21c835 100644 --- a/homeassistant/components/zha/core/gateway.py +++ b/homeassistant/components/zha/core/gateway.py @@ -672,7 +672,7 @@ class ZHAGateway: async def async_remove_zigpy_group(self, group_id: int) -> None: """Remove a Zigbee group from Zigpy.""" if not (group := self.groups.get(group_id)): - _LOGGER.debug("Group: %s:0x%04x could not be found", group.name, group_id) + _LOGGER.debug("Group: 0x%04x could not be found", group_id) return if group.members: tasks = []