From df2a579c422dd40124951bc79bdc4803524b2642 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Mon, 6 May 2013 16:36:23 +0000 Subject: [PATCH] Don't use non-ascii names in the email lists (at least for now). - Legacy-Id: 5700 --- ietf/submit/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/submit/models.py b/ietf/submit/models.py index f42245f65..e73a91611 100644 --- a/ietf/submit/models.py +++ b/ietf/submit/models.py @@ -71,7 +71,7 @@ class IdSubmissionDetail(models.Model): def confirmation_email_list(self): try: draft = InternetDraft.objects.get(filename=self.filename) - 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)) except InternetDraft.DoesNotExist: email_list = list(set(u'%s <%s>' % i.email() for i in self.tempidauthors_set.all())) return email_list