diff --git a/Lib/ldif.py b/Lib/ldif.py index 7466020..5145190 100644 --- a/Lib/ldif.py +++ b/Lib/ldif.py @@ -3,7 +3,7 @@ See http://www.python-ldap.org/ for details. -$Id: ldif.py,v 1.86 2015/10/24 15:50:00 stroeder Exp $ +$Id: ldif.py,v 1.87 2015/10/24 16:12:31 stroeder Exp $ Python compability note: Tested with Python 2.0+, but should work with Python 1.5.2+. @@ -391,7 +391,7 @@ def parse(self): """ return self.parse_entry_records() # parse() - def handle_change_modify(self,dn,modops,controls=None): + def handle_modify(self,dn,modops,controls=None): """ Process a single LDIF record representing a single modify operation. This method should be implemented by applications using LDIFParser. @@ -467,7 +467,7 @@ def parse_change_records(self): if modops: # append entry to result list - self.handle_change_modify(dn,modops,controls) + self.handle_modify(dn,modops,controls) else: