mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 09:43:15 +00:00
Don't use deprecated BaseException.message in keystone_user
fixes error "failed to parse: <attribute 'message' of 'exceptions.BaseException' objects> TypeError: <attribute 'message' of 'exceptions.BaseException' objects> is not JSON serializable"
This commit is contained in:
@@ -337,9 +337,9 @@ def main():
|
||||
if check_mode:
|
||||
# If we have a failure in check mode
|
||||
module.exit_json(changed=True,
|
||||
msg="exception: %s" % e.message)
|
||||
msg="exception: %s" % e)
|
||||
else:
|
||||
module.fail_json(msg=e.message)
|
||||
module.fail_json(msg="exception: %s" % e)
|
||||
else:
|
||||
module.exit_json(**d)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user