From 7627b959f890917194d1979276703aa78485d1c9 Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Fri, 22 Oct 2021 21:33:19 -0700 Subject: [PATCH] Fix format bug in nest log statement (#58263) * Fix format bug in nest log statement * Resolve lint error logging-fstring-interpolation --- homeassistant/components/nest/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/nest/__init__.py b/homeassistant/components/nest/__init__.py index 344bdb74970..87682c7043e 100644 --- a/homeassistant/components/nest/__init__.py +++ b/homeassistant/components/nest/__init__.py @@ -81,7 +81,7 @@ async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: return await async_setup_legacy(hass, config) if CONF_SUBSCRIBER_ID not in config[DOMAIN]: - _LOGGER.error("Configuration option '{CONF_SUBSCRIBER_ID}' required") + _LOGGER.error("Configuration option 'subscriber_id' required") return False # For setup of ConfigEntry below