mirror of
https://github.com/home-assistant/core.git
synced 2025-07-30 10:48:01 +02:00
Fix error messaging for cascading service calls (#136966)
This commit is contained in:
@ -275,10 +275,10 @@ async def handle_call_service(
|
||||
translation_domain=const.DOMAIN,
|
||||
translation_key="child_service_not_found",
|
||||
translation_placeholders={
|
||||
"domain": err.domain,
|
||||
"service": err.service,
|
||||
"child_domain": msg["domain"],
|
||||
"child_service": msg["service"],
|
||||
"domain": msg["domain"],
|
||||
"service": msg["service"],
|
||||
"child_domain": err.domain,
|
||||
"child_service": err.service,
|
||||
},
|
||||
)
|
||||
except vol.Invalid as err:
|
||||
|
Reference in New Issue
Block a user