Automation component now supports YAML lists for config key service_entity_id
parent
05df84d04f
commit
a7889ef628
|
@ -62,8 +62,12 @@ def _get_action(hass, config):
|
||||||
service_data = {}
|
service_data = {}
|
||||||
|
|
||||||
if CONF_SERVICE_ENTITY_ID in config:
|
if CONF_SERVICE_ENTITY_ID in config:
|
||||||
service_data[ATTR_ENTITY_ID] = \
|
try:
|
||||||
config[CONF_SERVICE_ENTITY_ID].split(",")
|
service_data[ATTR_ENTITY_ID] = \
|
||||||
|
config[CONF_SERVICE_ENTITY_ID].split(",")
|
||||||
|
except AttributeError:
|
||||||
|
service_data[ATTR_ENTITY_ID] = \
|
||||||
|
config[CONF_SERVICE_ENTITY_ID]
|
||||||
|
|
||||||
hass.services.call(domain, service, service_data)
|
hass.services.call(domain, service, service_data)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue