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 <rjsparks@nostrum.com>

* Update ietf/doc/views_draft.py

Co-authored-by: Robert Sparks <rjsparks@nostrum.com>

Co-authored-by: Robert Sparks <rjsparks@nostrum.com>
This commit is contained in:
Lars Eggert 2022-10-20 17:02:09 +03:00 committed by GitHub
parent 76b88b1658
commit 160ca9286a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 <b>%s</b>" % target_state['iesg'].name
e.desc = "Document is now in IESG state <b>%s</b>" % 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 <b>%s</b>" % doc.get_state("draft-iesg").name
e.desc = "Document is now in IESG state <b>%s</b>" % doc.get_state("draft-iesg").name
e.save()
events.append(e)