Log if target == NULL

This commit is contained in:
William Scanlon 2016-01-29 22:09:59 -05:00
parent 28f4283b40
commit 01a743c7d4

View File

@ -46,6 +46,10 @@ class GoogleVoiceSMSNotificationService(BaseNotificationService):
targets = kwargs.get(ATTR_TARGET)
if not targets:
_LOGGER.info('At least 1 target is required')
return
if not isinstance(targets, list):
targets = [targets]