Sfoglia il codice sorgente

Bugfix.

tags/v0.1.1
Ben Kurtovic 11 anni fa
parent
commit
5f7566c09e
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      mwparserfromhell/nodes/comment.py

+ 1
- 1
mwparserfromhell/nodes/comment.py Vedi File

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

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

@property
def contents(self):


Caricamento…
Annulla
Salva