소스 검색

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):


불러오는 중...
취소
저장