From 173f5419ac6618af85d491f70e6f515d3eecb798 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Thu, 15 Dec 2016 10:44:23 +0000 Subject: [PATCH] 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 --- ietf/idindex/index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/idindex/index.py b/ietf/idindex/index.py index cb47aa9d2..ec4e111ef 100644 --- a/ietf/idindex/index.py +++ b/ietf/idindex/index.py @@ -44,7 +44,7 @@ def all_id_txt(): inactive_states = ["pub", "watching", "dead"] - 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") + 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") # handle those actively in the IESG process for d in in_iesg_process: