Browse Source

Bugfix.

tags/v0.1.1
Ben Kurtovic 11 years ago
parent
commit
5f7566c09e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mwparserfromhell/nodes/comment.py

+ 1
- 1
mwparserfromhell/nodes/comment.py View File

@@ -34,7 +34,7 @@ class Comment(Node):
self._contents = contents

def __unicode__(self):
return "<!--" + self.contents + "-->"
return "<!--" + str(self.contents) + "-->"

@property
def contents(self):


Loading…
Cancel
Save