Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions homeassistant/components/climate/honeywell.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,11 @@ def update(self):
if val['id'] == self._id:
data = val

except KeyError:
_LOGGER.error("Update failed from Honeywell server")
self.client.user_data = None
return

except StopIteration:
_LOGGER.error("Did not receive any temperature data from the "
"evohomeclient API")
Expand Down