We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9e1753 commit 2bbe307Copy full SHA for 2bbe307
1 file changed
ietf/liaisons/views.py
@@ -80,7 +80,7 @@ def get_info(request):
80
'needs_approval': from_entity.needs_approval(person=person),
81
'post_only': from_entity.post_only(person=person, user=request.user)})
82
if is_secretariat(request.user):
83
- full_list = [(i.pk, i.email()) for i in from_entity.full_user_list()]
+ full_list = [(i.pk, i.email()) for i in set(from_entity.full_user_list())]
84
full_list.sort(lambda x,y: cmp(x[1], y[1]))
85
full_list = [(person.pk, person.email())] + full_list
86
result.update({'full_list': full_list})
0 commit comments