mirror of
https://github.com/kakwa/ldapcherry
synced 2025-07-03 11:57:41 +02:00
fix pep8 error
This commit is contained in:
parent
dcdc260f33
commit
f863b230dd
1 changed files with 4 additions and 1 deletions
|
@ -253,7 +253,10 @@ class Backend(ldapcherry.backend.backendLdap.Backend):
|
|||
if binddn is not None:
|
||||
ldap_client = self._connect()
|
||||
try:
|
||||
ldap_client.simple_bind_s(self._str(binddn), self._str(password))
|
||||
ldap_client.simple_bind_s(
|
||||
self._str(binddn),
|
||||
self._str(password)
|
||||
)
|
||||
except ldap.INVALID_CREDENTIALS:
|
||||
ldap_client.unbind_s()
|
||||
return False
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue