mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix reference to _handle_errors() in remove_principal_key()
It incorrectly was trying to call the class method _handle_errors() instead of the global function.
This commit is contained in:
parent
d0a60f3a15
commit
6befd08973
@ -839,7 +839,7 @@ class ldap2(CrudBackend, Encoder):
|
|||||||
try:
|
try:
|
||||||
self.conn.modify_s(dn, mod)
|
self.conn.modify_s(dn, mod)
|
||||||
except _ldap.LDAPError, e:
|
except _ldap.LDAPError, e:
|
||||||
self._handle_errors(e, **{})
|
_handle_errors(e, **{})
|
||||||
|
|
||||||
# CrudBackend methods
|
# CrudBackend methods
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user