File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -405,18 +405,16 @@ def extra_automation_headers(doc):
405405def 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
421419def stream_state_email_recipients (doc , extra_recipients = []):
422420 persons = set ()
You can’t perform that action at this time.
0 commit comments