diff options
-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') |