We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7615ed1 commit bfd5faaCopy full SHA for bfd5faa
django_auth_ldap/config.py
@@ -271,7 +271,9 @@ def search_with_additional_term_string(self, filterstr):
271
return type(self)(*searches)
272
273
def execute(self, connection, filterargs=(), escape=True):
274
- msgids = [search._begin(connection, filterargs, escape) for search in self.searches]
+ msgids = [
275
+ search._begin(connection, filterargs, escape) for search in self.searches
276
+ ]
277
results = {}
278
279
for search, msgid in zip(self.searches, msgids):
0 commit comments