Skip to content

Commit a07b318

Browse files
committed
Fix a minor typo in the new rfc_editor_note code. Commit ready for merge. Will apply as patch to production.
- Legacy-Id: 10806
1 parent 36d30ed commit a07b318

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/secr/telechat/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def get_doc_writeup(doc):
5959
writeup = 'This document has no writeup'
6060
if doc.type_id == 'draft':
6161
latest = doc.latest_event(WriteupDocEvent, type='changed_ballot_writeup_text')
62-
if latest and doc.has_rfc_editor_note:
62+
if latest and doc.has_rfc_editor_note():
6363
rfced_note = doc.latest_event(WriteupDocEvent, type="changed_rfc_editor_note_text")
6464
writeup = latest.text + "\n\n" + rfced_note.text
6565
else:

0 commit comments

Comments
 (0)