Fix missing exception catch in august to prevent failed setup (#66045)

pull/66103/head
J. Nick Koston 2022-02-07 17:45:40 -06:00 committed by Paulus Schoutsen
parent e53227be79
commit c1cb0a0f8e
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
raise ConfigEntryAuthFailed from err
except asyncio.TimeoutError as err:
raise ConfigEntryNotReady("Timed out connecting to august api") from err
except (ClientResponseError, CannotConnect) as err:
except (AugustApiAIOHTTPError, ClientResponseError, CannotConnect) as err:
raise ConfigEntryNotReady from err