diff options
author | David Robillard <d@drobilla.net> | 2012-03-04 03:55:27 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-03-04 03:55:27 +0000 |
commit | b88f314c64659cbf2f2590fab99ebfaf971caa52 (patch) | |
tree | 10f8f369432783a1bfbf7f8ad6860be268de87f3 /lv2specgen | |
parent | 08203463a3056759e33bff5fda294ddc40eda031 (diff) | |
download | lv2-b88f314c64659cbf2f2590fab99ebfaf971caa52.tar.xz |
Fix links to #defines.
Diffstat (limited to 'lv2specgen')
-rwxr-xr-x | lv2specgen/lv2specgen.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index d85a626..e8982a0 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -995,8 +995,7 @@ def load_tags(path, docdir): for cn in root.childNodes: if (cn.nodeType == xml.dom.Node.ELEMENT_NODE and cn.tagName == 'compound' - and cn.getAttribute('kind') != 'page' - and cn.getAttribute('kind') != 'file'): + and cn.getAttribute('kind') != 'page'): name = getChildText(cn, 'name') filename = getChildText(cn, 'filename') |