From 8218a59e6fcf0aefd31a75da4777239c169554d6 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Tue, 12 May 2015 02:08:32 +0000 Subject: [PATCH] Copy the RFC Editor on new version messages for drafts in any stream if the RFC Editor is already working on the draft. Fixes bug #1700. Commit ready for merge. - Legacy-Id: 9619 --- ietf/submit/mail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/submit/mail.py b/ietf/submit/mail.py index cb69182b5..72bf6ce8e 100644 --- a/ietf/submit/mail.py +++ b/ietf/submit/mail.py @@ -120,7 +120,7 @@ def announce_new_version(request, submission, draft, state_change_msg): to_email.append("IRSG ") # if it has been sent to the RFC Editor, keep them in the loop - if draft.get_state_slug("draft-iesg") in ("ann", "rfcqueue"): + if draft.get_state_slug("draft-rfceditor") is not None: to_email.append("RFC Editor ") active_ballot = draft.active_ballot()