Changeset 3b39edc
- Timestamp:
- Feb 11, 2014, 1:31:17 AM (13 years ago)
- Branches:
- master, stable, stage
- Children:
- bfc0d08
- Parents:
- 4193cf3
- git-author:
- Alex Dehnert <adehnert@…> (02/11/14 01:31:17)
- git-committer:
- Alex Dehnert <adehnert@…> (02/11/14 01:31:17)
- File:
-
- 1 edited
-
asadb/forms/models.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
asadb/forms/models.py
r4193cf3 r3b39edc 244 244 results.extend(batch_results) 245 245 246 left = set( usernames)246 left = set([u.lower() for u in usernames]) 247 247 undergrads = [] 248 248 grads = [] … … 259 259 for result in results: 260 260 username = result[1]['uid'][0] 261 left.remove(username )261 left.remove(username.lower()) 262 262 affiliation = result[1].get('eduPersonAffiliation', ['secret'])[0] 263 263 if affiliation == 'student':
Note: See TracChangeset
for help on using the changeset viewer.