fixed grammatical issue in iam.py. exit -> exist.
This commit is contained in:
parent
f2246deaf9
commit
18ff22348a
1 changed files with 1 additions and 1 deletions
|
@ -672,7 +672,7 @@ def main():
|
||||||
|
|
||||||
elif state == 'update' and not user_exists:
|
elif state == 'update' and not user_exists:
|
||||||
module.fail_json(
|
module.fail_json(
|
||||||
msg="The user %s does not exit. No update made." % name)
|
msg="The user %s does not exist. No update made." % name)
|
||||||
|
|
||||||
elif state == 'absent':
|
elif state == 'absent':
|
||||||
if user_exists:
|
if user_exists:
|
||||||
|
|
Loading…
Reference in a new issue