Skip to content

Commit 173f541

Browse files
committed
Changed the state shown in all_id.txt for drafts which have entered IESG processing, but then been replaced, to show as 'Replaced' instead of 'In IESG Processing'. This is consistent with how they are shown in all_id2.txt.
- Legacy-Id: 12529
1 parent 8e56935 commit 173f541

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/idindex/index.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def add_line(f1, f2, f3, f4):
4444

4545
inactive_states = ["pub", "watching", "dead"]
4646

47-
in_iesg_process = all_ids.exclude(states=State.objects.get(type="draft", slug="rfc")).filter(states__in=list(State.objects.filter(type="draft-iesg").exclude(slug__in=inactive_states))).only("name", "rev")
47+
in_iesg_process = all_ids.exclude(states=State.objects.filter(type="draft", slug__in=["rfc","repl"])).filter(states__in=list(State.objects.filter(type="draft-iesg").exclude(slug__in=inactive_states))).only("name", "rev")
4848

4949
# handle those actively in the IESG process
5050
for d in in_iesg_process:

0 commit comments

Comments
 (0)