Skip to content

Commit df2a579

Browse files
committed
Don't use non-ascii names in the email lists (at least for now).
- Legacy-Id: 5700
1 parent a3ce05b commit df2a579

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/submit/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def status_link(self):
7171
def confirmation_email_list(self):
7272
try:
7373
draft = InternetDraft.objects.get(filename=self.filename)
74-
email_list = list(set(u'%s <%s>' % (i.person.name, i.email()) for i in draft.authors))
74+
email_list = list(set(u'%s <%s>' % (i.person.ascii, i.email()) for i in draft.authors))
7575
except InternetDraft.DoesNotExist:
7676
email_list = list(set(u'%s <%s>' % i.email() for i in self.tempidauthors_set.all()))
7777
return email_list

0 commit comments

Comments
 (0)