Explorar el Código

Bugfix.

tags/v0.1.1
Ben Kurtovic hace 11 años
padre
commit
5f7566c09e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      mwparserfromhell/nodes/comment.py

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

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

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

@property
def contents(self):


Cargando…
Cancelar
Guardar