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() ]