Skip to content

Commit 1e84077

Browse files
committed
missed a cleanup
- Legacy-Id: 10012
1 parent 79d373f commit 1e84077

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

ietf/doc/mails.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -405,18 +405,16 @@ def extra_automation_headers(doc):
405405
def email_last_call_expired(doc):
406406
text = "IETF Last Call has ended, and the state has been changed to\n%s." % doc.get_state("draft-iesg").name
407407

408-
to = gather_addresses('last_call_expired',doc=doc)
409-
cc = gather_addresses('last_call_expired_cc',doc=doc)
410-
411408
send_mail(None,
412-
",\n ".join(to),
409+
gather_addresses('last_call_expired',doc=doc)
413410
"DraftTracker Mail System <iesg-secretary@ietf.org>",
414411
"Last Call Expired: %s" % doc.file_tag(),
415412
"doc/mail/change_notice.txt",
416413
dict(text=text,
417414
doc=doc,
418415
url=settings.IDTRACKER_BASE_URL + doc.get_absolute_url()),
419-
cc=",\n ".join(cc))
416+
cc = gather_addresses('last_call_expired_cc',doc=doc)
417+
)
420418

421419
def stream_state_email_recipients(doc, extra_recipients=[]):
422420
persons = set()

0 commit comments

Comments
 (0)