From fe185af8eb650c1e05971b86e402a61e264e251e Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Fri, 27 Jul 2012 21:20:23 +0000 Subject: [PATCH] Added new RFC-Editor state tag 'AUTH48-DONE' to the rfc-ed-queue mirror script. - Legacy-Id: 4636 --- ietf/idrfc/mirror_rfc_editor_queue.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ietf/idrfc/mirror_rfc_editor_queue.py b/ietf/idrfc/mirror_rfc_editor_queue.py index a3912e58f..0faf941cb 100644 --- a/ietf/idrfc/mirror_rfc_editor_queue.py +++ b/ietf/idrfc/mirror_rfc_editor_queue.py @@ -213,6 +213,7 @@ def get_rfc_state_mapping(): return { 'AUTH': State.objects.get_or_create(type=t, slug='auth', name='AUTH', desc="Awaiting author action")[0], 'AUTH48': State.objects.get_or_create(type=t, slug='auth48', name="AUTH48", desc="Awaiting final author approval")[0], + 'AUTH48-DONE': State.objects.get_or_create(type=t, slug='auth48done', name="AUTH48-DONE", desc="Final approvals are complete")[0], 'EDIT': State.objects.get_or_create(type=t, slug='edit', name='EDIT', desc="Approved by the stream manager (e.g., IESG, IAB, IRSG, ISE), awaiting processing and publishing")[0], 'IANA': State.objects.get_or_create(type=t, slug='iana-crd', name='IANA', desc="RFC-Editor/IANA Registration Coordination")[0], 'IESG': State.objects.get_or_create(type=t, slug='iesg', name='IESG', desc="Holding for IESG action")[0],