Trap and trace error rather than throwing exception when efergy server
This commit is contained in:
parent
4c3d6981a6
commit
00f0dfb971
1 changed files with 1 additions and 1 deletions
|
@ -97,5 +97,5 @@ class EfergySensor(Entity):
|
|||
self._state = response.json()['sum']
|
||||
else:
|
||||
self._state = 'Unknown'
|
||||
except RequestException:
|
||||
except (RequestException, ValueError):
|
||||
_LOGGER.warning('Could not update status for %s', self.name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue