Merge pull request #7632 from cdwertmann/patch-2

Don't use deprecated BaseException.message in keystone_user
pull/7651/head
James Cammarata 11 years ago
commit 832d6c2f3b

@ -337,9 +337,9 @@ def main():
if check_mode: if check_mode:
# If we have a failure in check mode # If we have a failure in check mode
module.exit_json(changed=True, module.exit_json(changed=True,
msg="exception: %s" % e.message) msg="exception: %s" % e)
else: else:
module.fail_json(msg=e.message) module.fail_json(msg="exception: %s" % e)
else: else:
module.exit_json(**d) module.exit_json(**d)

Loading…
Cancel
Save