Merge pull request #1521 from Shrews/os_keystone_domain

Fix exception output for os_keystone_domain.
This commit is contained in:
Matt Martz 2016-01-19 11:29:40 -06:00
commit e8427cb32a

View file

@ -181,7 +181,7 @@ def main():
module.exit_json(changed=changed)
except shade.OpenStackCloudException as e:
module.fail_json(msg=e.message)
module.fail_json(msg=str(e))
from ansible.module_utils.basic import *