From d40385570f11dc5c32974addc785a89421975a21 Mon Sep 17 00:00:00 2001 From: Jennifer Richards Date: Tue, 2 Dec 2025 17:56:22 -0400 Subject: [PATCH] fix: remove all None authors, not just first --- ietf/doc/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/doc/models.py b/ietf/doc/models.py index af38b516e1..a9530f134d 100644 --- a/ietf/doc/models.py +++ b/ietf/doc/models.py @@ -470,7 +470,7 @@ def authors(self): log.log( f"FIXME: authors() cannot handle non-Person authors in {self}" ) - rfc_authors.remove(None) + rfc_authors = [author for author in rfc_authors if author is not None] return rfc_authors return [ a.person for a in self.documentauthor_set.all() ]