summaryrefslogtreecommitdiffstats
path: root/ipalib/errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/errors.py')
-rw-r--r--ipalib/errors.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ipalib/errors.py b/ipalib/errors.py
index 86cd60d11..58799628d 100644
--- a/ipalib/errors.py
+++ b/ipalib/errors.py
@@ -961,12 +961,12 @@ class NotGroupMember(ExecutionError):
>>> raise NotGroupMember()
Traceback (most recent call last):
...
- NotGroupMember: This entry is not a member of the group
+ NotGroupMember: This entry is not a member
"""
errno = 4012
- format = _('This entry is not a member of the group')
+ format = _('This entry is not a member')
class RecursiveGroup(ExecutionError):
"""
@@ -993,12 +993,12 @@ class AlreadyGroupMember(ExecutionError):
>>> raise AlreadyGroupMember()
Traceback (most recent call last):
...
- AlreadyGroupMember: This entry is already a member of the group
+ AlreadyGroupMember: This entry is already a member
"""
errno = 4014
- format = _('This entry is already a member of the group')
+ format = _('This entry is already a member')
class Base64DecodeError(ExecutionError):
"""