Skip to content

Commit

Permalink
LDIFParser.parse_change_records() now correctly calls handle_change_m…
Browse files Browse the repository at this point in the history
…odify()
  • Loading branch information
stroeder committed Oct 24, 2015
1 parent 12cf591 commit 0fa88d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
----------------------------------------------------------------
Released 2.4.22 2015-10-xx
Released 2.4.22 2015-10-25

Changes since 2.4.21:

Expand All @@ -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.
Expand Down Expand Up @@ -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 $
4 changes: 2 additions & 2 deletions Lib/ldif.py
Original file line number Diff line number Diff line change
Expand Up @@ -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+.
Expand Down Expand Up @@ -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:

Expand Down

0 comments on commit 0fa88d0

Please sign in to comment.