Replace list comprehensions by iterators in dal

This commit is contained in:
Martin Pépin 2017-03-19 14:05:25 +00:00
parent 55b67f38c8
commit 4899bba1f7
2 changed files with 4 additions and 4 deletions

View file

@ -56,10 +56,10 @@ def autocomplete(request):
# Fetching data from the SPI
if hasattr(settings, 'LDAP_SERVER_URL'):
# Fetching
ldap_query = '(|{:s})'.format(''.join([
ldap_query = '(|{:s})'.format(''.join(
'(cn=*{bit:s}*)(uid=*{bit:s}*)'.format(bit=bit)
for bit in bits if bit.isalnum()
]))
))
if ldap_query != "(|)":
# If none of the bits were legal, we do not perform the query
with Connection(settings.LDAP_SERVER_URL) as conn:

View file

@ -75,10 +75,10 @@ def account_create(request):
# Fetching data from the SPI
if hasattr(settings, 'LDAP_SERVER_URL'):
# Fetching
ldap_query = '(|{:s})'.format(''.join([
ldap_query = '(|{:s})'.format(''.join(
'(cn=*{bit:s}*)(uid=*{bit:s}*)'.format(bit=word)
for word in search_words if word.isalnum()
]))
))
if ldap_query != "(|)":
# If none of the bits were legal, we do not perform the query
with Connection(settings.LDAP_SERVER_URL) as conn: