We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3ce05b commit df2a579Copy full SHA for df2a579
1 file changed
ietf/submit/models.py
@@ -71,7 +71,7 @@ def status_link(self):
71
def confirmation_email_list(self):
72
try:
73
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))
+ email_list = list(set(u'%s <%s>' % (i.person.ascii, i.email()) for i in draft.authors))
75
except InternetDraft.DoesNotExist:
76
email_list = list(set(u'%s <%s>' % i.email() for i in self.tempidauthors_set.all()))
77
return email_list
0 commit comments