Skip to content

Commit

Permalink
Fix v2
Browse files Browse the repository at this point in the history
  • Loading branch information
pvizeli committed Dec 20, 2019
1 parent 12f1a32 commit 5def518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/deconz/config_flow.py
Expand Up @@ -188,7 +188,7 @@ async def async_step_ssdp(self, discovery_info):
for entry in self.hass.config_entries.async_entries(DOMAIN):
if uuid == entry.data.get(CONF_UUID):
return self._update_entry(
entry, discovery_info[CONF_HOST], entry.data.get[CONF_PORT]
entry, discovery_info[CONF_HOST], entry.data.get(CONF_PORT)
)

bridgeid = discovery_info[ATTR_SERIAL]
Expand Down

0 comments on commit 5def518

Please sign in to comment.