Add missing variable to log point (#174)

This commit is contained in:
Pierre Ståhl
2020-11-20 11:00:57 +01:00
committed by GitHub
parent f376d8584a
commit 566859501d

View File

@@ -156,7 +156,7 @@ async def async_setup(hass: HomeAssistant, config: dict):
updates[CONF_PRODUCT_KEY] = product_key
if updates:
_LOGGER.debug("Update keys for device %s: %s", updates)
_LOGGER.debug("Update keys for device %s: %s", device_id, updates)
hass.config_entries.async_update_entry(
entry, data={**entry.data, **updates}
)