From 807e89cb85ecf7c42c4097be1d393586166f77b8 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Tue, 13 Sep 2016 18:53:52 +0000 Subject: [PATCH] Change 1id_index back to using plain names, undoing an inadvertent change to names with title. - Legacy-Id: 11986 --- ietf/idindex/index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/idindex/index.py b/ietf/idindex/index.py index eacf71ffa..e0cf91e6a 100644 --- a/ietf/idindex/index.py +++ b/ietf/idindex/index.py @@ -239,7 +239,7 @@ def active_drafts_index_by_group(extra_values=()): if d: if "authors" not in d: d["authors"] = [] - d["authors"].append(a.author.person.ascii_name()) + d["authors"].append(a.author.person.plain_name()) # put docs into groups for d in docs_dict.itervalues():