From 7a57435e8c98cd8f4d8ba2e9a64af563028d74d1 Mon Sep 17 00:00:00 2001 From: mkmer Date: Fri, 5 May 2023 15:21:22 -0400 Subject: [PATCH] Address connection error wording in Honeywell (#92488) Connection error wording in Honeywell --- homeassistant/components/honeywell/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/homeassistant/components/honeywell/__init__.py b/homeassistant/components/honeywell/__init__.py index ff544882289..f5cce1d890a 100644 --- a/homeassistant/components/honeywell/__init__.py +++ b/homeassistant/components/honeywell/__init__.py @@ -67,8 +67,7 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> b asyncio.TimeoutError, ) as ex: raise ConfigEntryNotReady( - "Failed to initialize the Honeywell client: " - "Connection error: maybe you have exceeded the API rate limit?" + "Failed to initialize the Honeywell client: Connection error" ) from ex loc_id = config_entry.data.get(CONF_LOC_ID)