Skip to content

Commit 14e2af1

Browse files
committed
Committing patch from ietf-tools#767, to make splitting of comma-separated multiset-ballot draft-names more robust. Related to ietf-tools#767
- Legacy-Id: 4055
1 parent 0011106 commit 14e2af1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/idrfc/views_doc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def _get_history(doc, versions):
163163

164164
multiset_ballot_text = "This was part of a ballot set with: "
165165
if e.desc.startswith(multiset_ballot_text):
166-
names = e.desc[len(multiset_ballot_text):].split(", ")
166+
names = [ n.strip() for n in e.desc[len(multiset_ballot_text):].split(",") ]
167167
e.desc = multiset_ballot_text + ", ".join(u'<a href="%s">%s</a>' % (urlreverse("doc_view", kwargs={'name': n }), n) for n in names)
168168
info["dontmolest"] = True
169169

0 commit comments

Comments
 (0)