Merge pull request #1521 from Shrews/os_keystone_domain

Fix exception output for os_keystone_domain.
reviewable/pr18780/r1
Matt Martz 9 years ago
commit e8427cb32a

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

Loading…
Cancel
Save