From 677fac0a0b58ab5bf900d281a57116a90cfbc17b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 5 Aug 2022 16:50:53 -0400 Subject: Fix inconsistent namespace index order This was "automatically" sorted on some systems and/or Python versions, but not others. --- scripts/lv2_build_index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') 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, }, -- cgit v1.2.1