mirror of
https://github.com/home-assistant/core.git
synced 2025-08-04 21:25:13 +02:00
Change to warning if attributes missing.
This commit is contained in:
@@ -126,4 +126,9 @@ class SensorTemplate(Entity):
|
|||||||
self._state = template.render(self.hass, self._template)
|
self._state = template.render(self.hass, self._template)
|
||||||
except TemplateError as ex:
|
except TemplateError as ex:
|
||||||
self._state = STATE_ERROR
|
self._state = STATE_ERROR
|
||||||
|
if ex.args and ex.args[0].startswith(
|
||||||
|
"UndefinedError: 'None' has no attribute"):
|
||||||
|
# Common during HA startup - so just a trace
|
||||||
|
_LOGGER.info(ex)
|
||||||
|
return
|
||||||
_LOGGER.error(ex)
|
_LOGGER.error(ex)
|
||||||
|
Reference in New Issue
Block a user