Merge pull request #669 from pavoni/handle-efergy_value_error
Trap and trace error rather than throwing exception when efergy server
This commit is contained in:
commit
47eb4e76cf
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
Reference in a new issue