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 <priyankanarkar@dhcp-91f8.meeting.ietf.org>
This commit is contained in:
PriyankaN 2023-07-22 17:33:11 -07:00 committed by GitHub
parent 36a7c5c647
commit 00c0389c1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()