From 01a53c2ef4deee08bd12cf98c4c3674a629745b5 Mon Sep 17 00:00:00 2001 From: Priyanka Narkar Date: Sat, 22 Jul 2023 15:04:47 -0700 Subject: [PATCH 1/2] fix:no history entry when changing RFC Editor note for doc --- 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 86c30e22a4..f402dc5d4b 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 = "RFC Editor Note was changed to " + t e.text = t.rstrip() e.save() From 7c45dac218266c8c1ae2f566690a861924390f13 Mon Sep 17 00:00:00 2001 From: Priyanka Narkar Date: Sat, 22 Jul 2023 15:41:28 -0700 Subject: [PATCH 2/2] fix:no history entry when changing RFC Editor note for doc --- 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 f402dc5d4b..98fb126109 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 to " + t + e.desc = f"RFC Editor Note was changed to \n{t}" e.text = t.rstrip() e.save()