Skip to content

Commit

Permalink
Merge pull request #682 from kbenzie/benie/exp-rst-order
Browse files Browse the repository at this point in the history
[ur] Sort experimental feature toctree order
  • Loading branch information
pbalcer authored Jul 5, 2023
2 parents 08f7031 + be12f15 commit da4335b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/templates/exp-features.rst.mako
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import glob
expdocs = []
for section in sections:
foundDocs = glob.glob(section + "/EXP-*.rst")
for found in foundDocs:
for found in sorted(foundDocs):
expdocs.append(found)
%>
=====================
Expand Down

0 comments on commit da4335b

Please sign in to comment.