summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/source_control/gitlab_user.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/modules/source_control/gitlab_user.py')
-rw-r--r--lib/ansible/modules/source_control/gitlab_user.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/modules/source_control/gitlab_user.py b/lib/ansible/modules/source_control/gitlab_user.py
index aac1d5586d..52c18f94e2 100644
--- a/lib/ansible/modules/source_control/gitlab_user.py
+++ b/lib/ansible/modules/source_control/gitlab_user.py
@@ -16,7 +16,7 @@ DOCUMENTATION = '''
module: gitlab_user
short_description: Creates/updates/deletes Gitlab Users
description:
- - When the user does not exists in Gitlab, it will be created.
+ - When the user does not exist in Gitlab, it will be created.
- When the user does exists and state=absent, the user will be deleted.
- When changes are made to user, the user will be updated.
version_added: "2.1"
@@ -352,7 +352,7 @@ def main():
# Check if user exists, if not exists and state = absent, we exit nicely.
if not user.existsUser(user_username) and state == "absent":
- module.exit_json(changed=False, result="User already deleted or does not exists")
+ module.exit_json(changed=False, result="User already deleted or does not exist")
else:
# User exists,
if state == "absent":