From 6c592c7cc62e13a26eb56aca873088ed76c48d07 Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Wed, 22 Feb 2012 11:08:43 +0000 Subject: [PATCH] Catch "IESG process started in state" state change too for figuring out the state date - Legacy-Id: 3944 --- ietf/idrfc/idrfc_wrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/idrfc/idrfc_wrapper.py b/ietf/idrfc/idrfc_wrapper.py index 6f871e9db..1c18a1b0e 100644 --- a/ietf/idrfc/idrfc_wrapper.py +++ b/ietf/idrfc/idrfc_wrapper.py @@ -469,8 +469,8 @@ class IetfProcessData: Q(desc__istartswith="State Changes to ")| Q(desc__istartswith="Sub state has been changed to ")| Q(desc__istartswith="State has been changed to ")| - Q(desc__istartswith="IESG has approved and state has been changed to")).order_by('-time')[0].time.date() - + Q(desc__istartswith="IESG has approved and state has been changed to")| + Q(desc__istartswith="IESG process started in state")).order_by('-time')[0].time.date() return self._idinternal.comments().filter( Q(comment_text__istartswith="Draft Added by ")| Q(comment_text__istartswith="Draft Added in state ")|