From 31da337eb2ccea301966cf0f6a71daa058d19c91 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Mon, 27 Oct 2014 22:23:09 +0000 Subject: [PATCH] change default notify address for IRTF stream documents. Fixes bug #1489. Commit ready for merge. - Legacy-Id: 8506 --- ietf/doc/views_draft.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ietf/doc/views_draft.py b/ietf/doc/views_draft.py index 9a1197e30..78d8af981 100644 --- a/ietf/doc/views_draft.py +++ b/ietf/doc/views_draft.py @@ -235,9 +235,9 @@ def change_stream(request, name): if new_stream != old_stream: if new_stream and new_stream.slug and new_stream.slug == "irtf": if not doc.notify: - doc.notify = "irtf@irtf.org" - elif "irtf@irtf.org" not in doc.notify: - doc.notify += ", irtf@irtf.org" + doc.notify = "irsg@irtf.org" + elif "irsg@irtf.org" not in doc.notify: + doc.notify += ", irsg@irtf.org" save_document_in_history(doc)