ignore result entries (emitted by ldapsearch)

This commit is contained in:
Thomas NOËL 2016-05-19 15:58:38 +02:00
parent 5a46d546d1
commit 31b730c87a
1 changed files with 2 additions and 0 deletions

View File

@ -86,6 +86,8 @@ class CurieLdifParser(ldif.LDIFParser):
return
if 'control' in entry:
return
if 'result' in entry:
return
if 'employeenumber' in entry:
self.handle_ad(dn, entry)
elif 'ICPersonne' in entry['objectclass']: