diff --git a/ietf/wgchairs/forms.py b/ietf/wgchairs/forms.py index 7aca1291c..cc1490377 100644 --- a/ietf/wgchairs/forms.py +++ b/ietf/wgchairs/forms.py @@ -191,7 +191,7 @@ class AddDelegateForm(RelatedWGForm): return self.next_form def get_person(self, email): - persons = PersonOrOrgInfo.objects.filter(emailaddress__address=email, iesglogin__isnull=False).distinct() + persons = PersonOrOrgInfo.objects.filter(emailaddress__address=email).distinct() if not persons: raise PersonOrOrgInfo.DoesNotExist if len(persons) > 1: