Parcourir la source

Bugfix.

tags/v0.1.1
Ben Kurtovic il y a 11 ans
Parent
révision
5f7566c09e
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      mwparserfromhell/nodes/comment.py

+ 1
- 1
mwparserfromhell/nodes/comment.py Voir le fichier

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

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

@property
def contents(self):


Chargement…
Annuler
Enregistrer