Skip to content

Commit 9a6f0e4

Browse files
committed
Get person without limiting it to iesglogins. WG Chairs will have logins but not IESG logins ...
- Legacy-Id: 3201
1 parent f62bfc7 commit 9a6f0e4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/wgchairs/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def get_next_form(self):
191191
return self.next_form
192192

193193
def get_person(self, email):
194-
persons = PersonOrOrgInfo.objects.filter(emailaddress__address=email, iesglogin__isnull=False).distinct()
194+
persons = PersonOrOrgInfo.objects.filter(emailaddress__address=email).distinct()
195195
if not persons:
196196
raise PersonOrOrgInfo.DoesNotExist
197197
if len(persons) > 1:

0 commit comments

Comments
 (0)