Merge pull request #29663 from abednarik/virtual_ret_cloud_module

modules.cloud: __virtual__ return err msg.
This commit is contained in:
Justin Findlay 2015-12-14 10:15:47 -07:00
commit 8d26f9b216

View File

@ -34,7 +34,7 @@ def __virtual__():
'''
if HAS_SALTCLOUD:
return True
return False
return (False, 'The cloud execution module cannot be loaded: only available on non-Windows systems.')
def _get_client():