From 00c0389c1f6c1a1c93f714349d3a7f48aeec8a56 Mon Sep 17 00:00:00 2001 From: PriyankaN Date: Sat, 22 Jul 2023 17:33:11 -0700 Subject: [PATCH] fix:no history entry when changing RFC Editor note for doc (#6021) * fix:no history entry when changing RFC Editor note for doc * fix:no history entry when changing RFC Editor note for doc --------- Co-authored-by: Priyanka Narkar --- ietf/doc/views_ballot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/doc/views_ballot.py b/ietf/doc/views_ballot.py index 86c30e22a..98fb12610 100644 --- a/ietf/doc/views_ballot.py +++ b/ietf/doc/views_ballot.py @@ -721,7 +721,7 @@ def ballot_rfceditornote(request, name): e = WriteupDocEvent(doc=doc, rev=doc.rev, by=login) e.by = login e.type = "changed_rfc_editor_note_text" - e.desc = "RFC Editor Note was changed" + e.desc = f"RFC Editor Note was changed to \n{t}" e.text = t.rstrip() e.save()