Skip to content

Commit

Permalink
0.0.7 bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gadget-man committed Jul 21, 2021
1 parent cc0d26f commit 19e67e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
return False


_LOGGER.debug("Got status from device: Result: %s, Message: %s", status["result"], status["message"])
_LOGGER.debug("Got status from device: Result: %s, Message: %s", str(status["result"]), status["message"])

iparcelbox = ConfigureiParcelBox(device, name, hostname, mac, serial)

Expand Down
2 changes: 1 addition & 1 deletion entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ def device_info(self):
"name": self._iparcelbox._name,
"manufacturer": MANUFACTURER,
"model": self._mac_addr,
"sw_version": {firmware},
"sw_version": firmware,
# "model": self._doorstation_info[DOORBIRD_INFO_KEY_DEVICE_TYPE],
}

0 comments on commit 19e67e7

Please sign in to comment.