Fix exception output for os_keystone_domain.

The message attribute of a shade exception is not very helpful.
Converting to a full string will contain many more details.
reviewable/pr18780/r1
David Shrewsbury 9 years ago
parent ad2208c7b5
commit 46b4622eba

@ -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 *

Loading…
Cancel
Save