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.
pull/18777/head
David Shrewsbury 9 years ago committed by Matt Clay
parent 7f1ccad39b
commit ccee183143

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