diff options
author | David Robillard <d@drobilla.net> | 2022-08-05 16:50:53 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-08-05 22:02:50 -0400 |
commit | 677fac0a0b58ab5bf900d281a57116a90cfbc17b (patch) | |
tree | 43138919b22d0dbec377f96cdff01624998abd26 /scripts | |
parent | 7768958f8691d095c7869f212cc6c2233b973228 (diff) | |
download | lv2-677fac0a0b58ab5bf900d281a57116a90cfbc17b.tar.xz |
Fix inconsistent namespace index order
This was "automatically" sorted on some systems and/or Python versions, but not
others.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/lv2_build_index.py | 2 |
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, }, |