diff options
author | David Robillard <d@drobilla.net> | 2020-03-22 19:29:25 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-03-28 17:10:05 +0100 |
commit | f99eb16350e996e06914415e0546b85d110a3ef8 (patch) | |
tree | 60343de890487a8a8bd9b19b2df13257b65cc37f | |
parent | dbeba1eef8bd7c5210d661fe768515d485ab5aad (diff) | |
download | lv2-f99eb16350e996e06914415e0546b85d110a3ef8.tar.xz |
lv2specgen: Use a consistent order for owl and rdfs metadata
-rwxr-xr-x | lv2specgen/lv2specgen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index f3f39b6..6e9ba70 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -704,8 +704,8 @@ def docTerms(category, list, m, classlist, proplist, instalist): terminfo = "" extrainfo = "" if category == 'Property': - terminfo += owlInfo(term, m) terminfo += rdfsPropertyInfo(term, m) + terminfo += owlInfo(term, m) if category == 'Class': terminfo += rdfsClassInfo(term, m) extrainfo += owlRestrictionInfo(term, m) |