From 834f3603bcba2a873a58eb0babcf21c043a80465 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 2 Dec 2020 10:32:25 +0100 Subject: [PATCH] Correct service not found exception message (#43846) --- homeassistant/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/exceptions.py b/homeassistant/exceptions.py index 015e81f2ca0..e37f68a07bf 100644 --- a/homeassistant/exceptions.py +++ b/homeassistant/exceptions.py @@ -80,4 +80,4 @@ class ServiceNotFound(HomeAssistantError): def __str__(self) -> str: """Return string representation.""" - return f"Unable to find service {self.domain}/{self.service}" + return f"Unable to find service {self.domain}.{self.service}"