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:
parent
416705e5e2
commit
0d2ac3ce62
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue