From 1e84077e53c75a0fd4491c5397023d1c49c1e159 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Tue, 11 Aug 2015 22:01:53 +0000 Subject: [PATCH] missed a cleanup - Legacy-Id: 10012 --- ietf/doc/mails.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/ietf/doc/mails.py b/ietf/doc/mails.py index 3d0214bc7..9b6ff4f13 100644 --- a/ietf/doc/mails.py +++ b/ietf/doc/mails.py @@ -405,18 +405,16 @@ def extra_automation_headers(doc): def email_last_call_expired(doc): text = "IETF Last Call has ended, and the state has been changed to\n%s." % doc.get_state("draft-iesg").name - to = gather_addresses('last_call_expired',doc=doc) - cc = gather_addresses('last_call_expired_cc',doc=doc) - send_mail(None, - ",\n ".join(to), + gather_addresses('last_call_expired',doc=doc) "DraftTracker Mail System ", "Last Call Expired: %s" % doc.file_tag(), "doc/mail/change_notice.txt", dict(text=text, doc=doc, url=settings.IDTRACKER_BASE_URL + doc.get_absolute_url()), - cc=",\n ".join(cc)) + cc = gather_addresses('last_call_expired_cc',doc=doc) + ) def stream_state_email_recipients(doc, extra_recipients=[]): persons = set()