From b8844cb5264febf18371a63947b1becbaa1ea67d Mon Sep 17 00:00:00 2001 From: stroeder Date: Sat, 24 Oct 2015 16:12:31 +0000 Subject: [PATCH] Prefer method name handle_modify() --- Lib/ldif.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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: