Merge pull request #1521 from Shrews/os_keystone_domain
Fix exception output for os_keystone_domain.
This commit is contained in:
commit
e8427cb32a
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue