From f2b106cf8ce6fa3e57b1bc09880903882415e18f Mon Sep 17 00:00:00 2001
From: Robert Sparks <rjsparks@nostrum.com>
Date: Sat, 21 Mar 2020 22:07:15 +0000
Subject: [PATCH] Remove log.assertion that was checking that we covered the
 edges when we changed documents to always have an iesg state. Commit ready
 for merge.  - Legacy-Id: 17495

---
 ietf/doc/expire.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/ietf/doc/expire.py b/ietf/doc/expire.py
index 985a2bd0f..b21b25e50 100644
--- a/ietf/doc/expire.py
+++ b/ietf/doc/expire.py
@@ -28,7 +28,6 @@ def expirable_draft(draft):
     two functions need to be kept in sync."""
     if draft.type_id != 'draft':
         return False
-    log.assertion('draft.get_state_slug("draft-iesg")')
     return bool(expirable_drafts(Document.objects.filter(pk=draft.pk)))
 
 nonexpirable_states = []                # type: List[State]