Skip to content

Commit

Permalink
Addresses an issue where the WG document page would show the same doc…
Browse files Browse the repository at this point in the history
…ument in more than one section. Fixes #1827. Commit ready for merge.

 - Legacy-Id: 10405
  • Loading branch information
rjsparks committed Nov 3, 2015
1 parent be377e5 commit 95df98b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/group/info.py
Expand Up @@ -390,7 +390,7 @@ def search_for_group_documents(group):
for d in raw_docs_related:
parts = d.name.split("-", 2);
# canonical form draft-<name|ietf|irtf>-wg-etc
if len(parts) >= 3 and parts[1] not in ("ietf", "irtf") and parts[2].startswith(group.acronym + "-"):
if len(parts) >= 3 and parts[1] not in ("ietf", "irtf") and parts[2].startswith(group.acronym + "-") and d not in docs:
d.search_heading = "Related Internet-Draft"
docs_related.append(d)

Expand Down

0 comments on commit 95df98b

Please sign in to comment.