浏览代码

Bugfix.

tags/v0.1.1
Ben Kurtovic 11 年前
父节点
当前提交
5f7566c09e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      mwparserfromhell/nodes/comment.py

+ 1
- 1
mwparserfromhell/nodes/comment.py 查看文件

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

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

@property
def contents(self):


正在加载...
取消
保存