Converted state.attributes to dict. Fixes Issue #1252

This commit is contained in:
miniconfig 2016-02-14 10:47:46 -05:00
parent 39bbfd14d9
commit 01df1f8458

View file

@ -71,7 +71,7 @@ def setup(hass, config):
{ {
'domain': state.domain, 'domain': state.domain,
'entity_id': state.object_id, 'entity_id': state.object_id,
'attributes': state.attributes, 'attributes': dict(state.attributes),
'time': str(event.time_fired), 'time': str(event.time_fired),
'value': _state, 'value': _state,
} }