We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36d30ed commit a07b318Copy full SHA for a07b318
1 file changed
ietf/secr/telechat/views.py
@@ -59,7 +59,7 @@ def get_doc_writeup(doc):
59
writeup = 'This document has no writeup'
60
if doc.type_id == 'draft':
61
latest = doc.latest_event(WriteupDocEvent, type='changed_ballot_writeup_text')
62
- if latest and doc.has_rfc_editor_note:
+ if latest and doc.has_rfc_editor_note():
63
rfced_note = doc.latest_event(WriteupDocEvent, type="changed_rfc_editor_note_text")
64
writeup = latest.text + "\n\n" + rfced_note.text
65
else:
0 commit comments