aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-08-05 16:50:53 -0400
committerDavid Robillard <d@drobilla.net>2022-08-05 22:02:50 -0400
commit677fac0a0b58ab5bf900d281a57116a90cfbc17b (patch)
tree43138919b22d0dbec377f96cdff01624998abd26
parent7768958f8691d095c7869f212cc6c2233b973228 (diff)
downloadlv2-677fac0a0b58ab5bf900d281a57116a90cfbc17b.tar.xz
Fix inconsistent namespace index order
This was "automatically" sorted on some systems and/or Python versions, but not others.
-rwxr-xr-xscripts/lv2_build_index.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lv2_build_index.py b/scripts/lv2_build_index.py
index 39d933c..9a287e4 100755
--- a/scripts/lv2_build_index.py
+++ b/scripts/lv2_build_index.py
@@ -207,7 +207,7 @@ def build_index(
os.path.join(lv2_source_root, "doc", "index.html.in"),
sys.stdout,
{
- "@ROWS@": "\n".join(rows),
+ "@ROWS@": "\n".join(sorted(rows)),
"@LV2_VERSION@": lv2_version,
"@DATE@": date,
},