Fix zha LogEntry call (#80737)

The signature for LogEntry changed in #80645 to drop the
unused argument
pull/80733/head^2
J. Nick Koston 2022-10-21 12:17:21 -05:00 committed by GitHub
parent a2080492de
commit 611194ddd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -754,7 +754,7 @@ class LogRelayHandler(logging.Handler):
"|".join([re.escape(x) for x in (hass_path, config_dir)]) "|".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( async_dispatcher_send(
self.hass, self.hass,
ZHA_GW_MSG, ZHA_GW_MSG,