Skip to content

Commit 8d4a171

Browse files
Fixing the last call processing code to identify the new placeholder writeup.
- Legacy-Id: 5897
1 parent 451043d commit 8d4a171

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/idrfc/lastcall.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def expire_last_call(doc):
5656

5757
try:
5858
ballot = doc.idinternal.ballot
59-
if ballot.ballot_writeup and "What does this protocol do and why" not in ballot.ballot_writeup:
59+
if ballot.ballot_writeup and "Relevant content can frequently be found in the abstract" not in ballot.ballot_writeup:
6060
state = IDState.WAITING_FOR_AD_GO_AHEAD
6161
except BallotInfo.DoesNotExist:
6262
pass
@@ -73,7 +73,7 @@ def expire_last_callREDESIGN(doc):
7373
state = State.objects.get(used=True, type="draft-iesg", slug="writeupw")
7474

7575
e = doc.latest_event(WriteupDocEvent, type="changed_ballot_writeup_text")
76-
if e and "What does this protocol do and why" not in e.text:
76+
if e and "Relevant content can frequently be found in the abstract" not in e.text:
7777
# if boiler-plate text has been removed, we assume the
7878
# write-up has been written
7979
state = State.objects.get(used=True, type="draft-iesg", slug="goaheadw")

0 commit comments

Comments
 (0)