From 5f7566c09ecc626479332da9413247627afc220b Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Wed, 19 Sep 2012 23:49:16 -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 9b4a024..3d06261 100644 --- a/mwparserfromhell/nodes/comment.py +++ b/mwparserfromhell/nodes/comment.py @@ -34,7 +34,7 @@ class Comment(Node): self._contents = contents def __unicode__(self): - return "" + return "" @property def contents(self):