Use superclass constructor

This commit is contained in:
Alexander van Gessel 2010-05-24 04:25:04 +01:00
parent ab936faa05
commit 5b35460a67

View file

@ -127,8 +127,7 @@ class RootNode(TagNode):
The root node. There is exactly one such node.
"""
def __init__(self):
self.name = None
self.data = []
TagNode.__init__(self, None)
def debug(self):
s = ""