Ver código fonte

Bugfix.

tags/v0.1.1
Ben Kurtovic 11 anos atrás
pai
commit
5f7566c09e
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      mwparserfromhell/nodes/comment.py

+ 1
- 1
mwparserfromhell/nodes/comment.py Ver arquivo

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

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

@property
def contents(self):


Carregando…
Cancelar
Salvar