Merge pull request #24868 from thusoy/patch-3

Don't error log missing IFTTT keys
This commit is contained in:
Justin Findlay 2015-06-22 21:54:35 -06:00
commit 7db3d7e285

View file

@ -29,8 +29,7 @@ def __virtual__():
'''
if not __salt__['config.get']('ifttt.secret_key') and \
not __salt__['config.get']('ifttt:secret_key'):
log.error('IFTTT Secret Key Unavailable, not loading.')
return False
return (False, 'IFTTT Secret Key Unavailable, not loading.')
return True