Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
proycon committed May 22, 2019
1 parent 4942bab commit 8545964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion folia/foliaset.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def parsexml(Class, node, subsets):
for subnode in node:
if isinstance(subnode.tag, str) or (sys.version < '3' and isinstance(subnode.tag, unicode)): #pylint: disable=undefined-variable
if subnode.tag == '{' + NSFOLIA + '}class':
subclasses.append( LegacyClassDefinition.parsexml(subnode) )
subclasses.append( LegacyClassDefinition.parsexml(subnode, subsets) )
elif subnode.tag == '{' + NSFOLIA + '}constrain':
if 'id' in subnode.attrib:
if subnode.attrib['id'] in subsets:
Expand Down

0 comments on commit 8545964

Please sign in to comment.