forked from shaba/openuds
gitignore al ldaputil small comment fix
This commit is contained in:
parent
6da7a4134e
commit
5388d03213
2
server/src/.gitignore
vendored
2
server/src/.gitignore
vendored
@ -2,4 +2,4 @@
|
||||
/static/
|
||||
.coverage
|
||||
/uds/static/clients/
|
||||
/*.sqlite3
|
||||
/*.sqlite3*
|
||||
|
@ -65,6 +65,7 @@ def connection(
|
||||
username: str,
|
||||
passwd: typing.Union[str, bytes],
|
||||
host: str,
|
||||
*,
|
||||
port: int = -1,
|
||||
ssl: bool = False,
|
||||
timeout: int = 3,
|
||||
@ -125,7 +126,7 @@ def getAsDict(
|
||||
logger.debug('Filter: %s, attr list: %s', ldapFilter, attrList)
|
||||
|
||||
if attrList:
|
||||
attrList = [i for i in attrList] # Ensures iterable is a dict
|
||||
attrList = [i for i in attrList] # Ensures iterable is a list
|
||||
|
||||
res = None
|
||||
try:
|
||||
|
Loading…
x
Reference in New Issue
Block a user