瀏覽代碼

Bugfix.

tags/v0.1.1
Ben Kurtovic 11 年之前
父節點
當前提交
bd132ad249
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      mwparserfromhell/nodes/comment.py

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

@@ -30,7 +30,7 @@ __all__ = ["Comment"]
class Comment(Node):
"""Represents a hidden HTML comment, like ``<!-- foobar -->``."""
def __init__(self, contents):
super(Text, self).__init__()
super(Comment, self).__init__()
self._contents = contents

def __unicode__(self):


Loading…
取消
儲存