summaryrefslogtreecommitdiffstats
path: root/ipa-python
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2008-04-04 16:30:36 -0400
committerRob Crittenden <rcritten@redhat.com>2008-04-04 16:30:36 -0400
commitcb4648a8af0cc3298e59fa65f8b42c79524647bc (patch)
treefc68cfcac16aea811626705f39d83c7dc7dad527 /ipa-python
parenta761093a30da8ec131f2ee410edf0f71ac250c41 (diff)
downloadfreeipa-cb4648a8af0cc3298e59fa65f8b42c79524647bc.tar.gz
freeipa-cb4648a8af0cc3298e59fa65f8b42c79524647bc.tar.xz
freeipa-cb4648a8af0cc3298e59fa65f8b42c79524647bc.zip
Add missing normalizeDN() when removing members from a group.
438387
Diffstat (limited to 'ipa-python')
-rw-r--r--ipa-python/ipaerror.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/ipa-python/ipaerror.py b/ipa-python/ipaerror.py
index 926ad4277..d96ebb1c3 100644
--- a/ipa-python/ipaerror.py
+++ b/ipa-python/ipaerror.py
@@ -237,3 +237,8 @@ STATUS_HAS_NSACCOUNTLOCK = gen_error_code(
STATUS_CATEGORY,
0x0003,
"This entry appears to have the nsAccountLock attribute in it so the Class of Service activation/inactivation will not work. You will need to remove the attribute nsAccountLock for this to work.")
+
+STATUS_NOT_GROUP_MEMBER = gen_error_code(
+ STATUS_CATEGORY,
+ 0x0004,
+ "This entry is not a member of the group.")