addChild should return a boolean

This commit is contained in:
nemunaire 2015-10-28 00:20:30 +01:00
parent c560e13f24
commit 2fdef0afe4

View File

@ -20,6 +20,7 @@ class TestNode():
def addChild(self, name, child): def addChild(self, name, child):
self.mystr = child.string self.mystr = child.string
return True
class Test2Node(): class Test2Node():