Skip to content

Commit 41f0905

Browse files
committed
Fixed condition check problem introduced with adjustments to setting the returning item bit. Fixes bug ietf-tools#1505. Commit ready to merge.
- Legacy-Id: 8444
1 parent c4fb9b5 commit 41f0905

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/doc/views_doc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -859,7 +859,7 @@ def telechat_date(request, name):
859859
initial_returning_item = bool(e and e.returning_item)
860860

861861
prompts = []
862-
if e and doc.type.slug != 'charter':
862+
if e and e.telechat_date and doc.type.slug != 'charter':
863863
if e.telechat_date==datetime.date.today():
864864
prompts.append( "This document is currently scheduled for today's telechat. "
865865
+"Please set the returning item bit carefully.")

0 commit comments

Comments
 (0)