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…
Откажи
Сачувај