Skip to content

Commit da4335b

Browse files
authored
Merge pull request #682 from kbenzie/benie/exp-rst-order
[ur] Sort experimental feature toctree order
2 parents 08f7031 + be12f15 commit da4335b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/templates/exp-features.rst.mako

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import glob
55
expdocs = []
66
for section in sections:
77
foundDocs = glob.glob(section + "/EXP-*.rst")
8-
for found in foundDocs:
8+
for found in sorted(foundDocs):
99
expdocs.append(found)
1010
%>
1111
=====================

0 commit comments

Comments
 (0)