gitignore al ldaputil small comment fix

This commit is contained in:
Adolfo Gómez García 2022-02-15 22:44:09 +01:00
parent 6da7a4134e
commit 5388d03213
2 changed files with 3 additions and 2 deletions

View File

@ -2,4 +2,4 @@
/static/
.coverage
/uds/static/clients/
/*.sqlite3
/*.sqlite3*

View File

@ -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: