Trap and trace error rather than throwing exception when efergy server

This commit is contained in:
pavoni 2015-11-27 18:21:26 +00:00
parent 4c3d6981a6
commit 00f0dfb971

View file

@ -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)