diff --git a/hshetl/extractors.py b/hshetl/extractors.py index ff16b4fa8c0d069a8ab78cc3c10884523c49c55c..0fe24e02b69b8d257a2df87294f439f605537eab 100644 --- a/hshetl/extractors.py +++ b/hshetl/extractors.py @@ -218,7 +218,7 @@ class LdapExtractor(AbstractExtractor): https://bitbucket.org/jaraco/python-ldap/src/f208b6338a28e869a366681f7dbdbf22a71b7da4/Demo/page_control.py?at=default ''' - logging.info('Executing paged ldap search base: ' + str(self.base) + ' scope: ' + str(self.scope) + ' filter: ' + str(self.ldap_filter) + ' attributes: ' + str(self.attributes) + ' page size: ' + str(self.page_size)) + logging.info('Executing paged ldap search base: ' + str(base) + ' scope: ' + str(scope) + ' filter: ' + str(self.ldap_filter) + ' attributes: ' + str(self.attributes) + ' page size: ' + str(page_size)) req_ctrl = SimplePagedResultsControl(True, size = page_size, cookie = '') known_ldap_resp_ctrls = {SimplePagedResultsControl.controlType:SimplePagedResultsControl}