From bd132ad24939acdb8f91e964d1105d1fb9fbbec2 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 16 Sep 2012 22:53:28 -0400 Subject: [PATCH] Bugfix. --- mwparserfromhell/nodes/comment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mwparserfromhell/nodes/comment.py b/mwparserfromhell/nodes/comment.py index ff77b18..9b4a024 100644 --- a/mwparserfromhell/nodes/comment.py +++ b/mwparserfromhell/nodes/comment.py @@ -30,7 +30,7 @@ __all__ = ["Comment"] class Comment(Node): """Represents a hidden HTML comment, like ````.""" def __init__(self, contents): - super(Text, self).__init__() + super(Comment, self).__init__() self._contents = contents def __unicode__(self):