From 0fa88d045e2406ac505db39fd2f655f52e1be404 Mon Sep 17 00:00:00 2001 From: stroeder Date: Sat, 24 Oct 2015 15:50:00 +0000 Subject: [PATCH] LDIFParser.parse_change_records() now correctly calls handle_change_modify() --- CHANGES | 6 ++++-- Lib/ldif.py | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 575252a..6f2301f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,5 @@ ---------------------------------------------------------------- -Released 2.4.22 2015-10-xx +Released 2.4.22 2015-10-25 Changes since 2.4.21: @@ -12,6 +12,8 @@ Lib/ * Hmmpf! Added missing self to LDAPObject.fileno(). * ReconnectLDAPObject.sasl_bind_s() now correctly uses generic wrapper arguments *args,**kwargs +* LDIFParser.parse_change_records() now correctly calls + LDIFParser.handle_change_modify() Doc/ * Started missing docs for sub-module ldap.sasl. @@ -1213,4 +1215,4 @@ Released 2.0.0pre02 2002-02-01 ---------------------------------------------------------------- Released 1.10alpha3 2000-09-19 -$Id: CHANGES,v 1.361 2015/10/24 15:46:12 stroeder Exp $ +$Id: CHANGES,v 1.362 2015/10/24 15:50:00 stroeder Exp $ diff --git a/Lib/ldif.py b/Lib/ldif.py index 47df877..7466020 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.85 2015/09/30 17:17:28 stroeder Exp $ +$Id: ldif.py,v 1.86 2015/10/24 15:50:00 stroeder Exp $ Python compability note: Tested with Python 2.0+, but should work with Python 1.5.2+. @@ -467,7 +467,7 @@ def parse_change_records(self): if modops: # append entry to result list - self.handle_modify(dn,modops,controls) + self.handle_change_modify(dn,modops,controls) else: