Fix passwd function call

pull/4420/head
Brown 2018-08-17 16:23:05 -05:00 committed by ansibot
parent ce541454e9
commit 4558c9102a
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class LdapPasswd(LdapGeneric):
# Change the password (or throw an exception)
try:
self.connection.passwd_set(self.dn, None, self.passwd)
self.connection.passwd(self.dn, None, self.passwd)
except ldap.LDAPError as e:
self.fail("Unable to set password", e)