From 611194ddd9a8e29843f2bfa3d496d08c855526a7 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 21 Oct 2022 12:17:21 -0500 Subject: [PATCH] Fix zha LogEntry call (#80737) The signature for LogEntry changed in #80645 to drop the unused argument --- 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 5261396c794..17adc5fc848 100644 --- a/homeassistant/components/zha/core/gateway.py +++ b/homeassistant/components/zha/core/gateway.py @@ -754,7 +754,7 @@ class LogRelayHandler(logging.Handler): "|".join([re.escape(x) for x in (hass_path, config_dir)]) ) ) - entry = LogEntry(record, stack, _figure_out_source(record, stack, paths_re)) + entry = LogEntry(record, _figure_out_source(record, stack, paths_re)) async_dispatcher_send( self.hass, ZHA_GW_MSG,