From 160ca9286a0c9225f3b6bfb69bfb47cf93f7a65b Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Thu, 20 Oct 2022 17:02:09 +0300 Subject: [PATCH] fix: Don't say that IESG processing has started (#4609) * fix: Don't say that IESG processing has started Fixes #4286 * Update ietf/doc/views_draft.py Co-authored-by: Robert Sparks * Update ietf/doc/views_draft.py Co-authored-by: Robert Sparks Co-authored-by: Robert Sparks --- ietf/doc/views_draft.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/doc/views_draft.py b/ietf/doc/views_draft.py index f3a307178..8e1e48c46 100644 --- a/ietf/doc/views_draft.py +++ b/ietf/doc/views_draft.py @@ -592,7 +592,7 @@ def to_iesg(request,name): e.by = by e.doc = doc e.rev = doc.rev - e.desc = "IESG process started in state %s" % target_state['iesg'].name + e.desc = "Document is now in IESG state %s" % target_state['iesg'].name e.save() events.append(e) @@ -713,7 +713,7 @@ def edit_info(request, name): e.by = by e.doc = doc e.rev = doc.rev - e.desc = "IESG process started in state %s" % doc.get_state("draft-iesg").name + e.desc = "Document is now in IESG state %s" % doc.get_state("draft-iesg").name e.save() events.append(e)