From c18d19f59964e66c3c74cab86237b1b43429419d Mon Sep 17 00:00:00 2001 From: functionpointer Date: Sat, 23 Jan 2021 14:36:17 +0100 Subject: [PATCH] MySensors: Nicer log message --- homeassistant/components/mysensors/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/mysensors/__init__.py b/homeassistant/components/mysensors/__init__.py index f314b695164..583508591fa 100644 --- a/homeassistant/components/mysensors/__init__.py +++ b/homeassistant/components/mysensors/__init__.py @@ -269,7 +269,7 @@ def setup_mysensors_platform( gateway_id, node_id, child_id, value_type = dev_id gateway: Optional[BaseAsyncGateway] = get_mysensors_gateway(hass, gateway_id) if not gateway: - _LOGGER.warning("skipping setup of %s, no gateway found.", dev_id) + _LOGGER.warning("Skipping setup of %s, no gateway found", dev_id) continue device_class_copy = device_class if isinstance(device_class, dict):