Skip to content

Commit ff6997d

Browse files
committed
Fixed a case of indeterminate ordering.
- Legacy-Id: 16343
1 parent 8b52899 commit ff6997d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/doc/views_draft.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1456,7 +1456,7 @@ def release_draft(request, name):
14561456
events = []
14571457

14581458
if doc.stream.slug == 'ise' or doc.group.type_id != 'individ':
1459-
existing_tags = set(doc.tags.all())
1459+
existing_tags = list(doc.tags.all())
14601460
if existing_tags:
14611461
doc.tags.clear()
14621462
e = DocEvent(type="changed_document", doc=doc, rev=doc.rev, by=by)

0 commit comments

Comments
 (0)