Bläddra i källkod

Bugfix.

tags/v0.1.1
Ben Kurtovic 11 år sedan
förälder
incheckning
5f7566c09e
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      mwparserfromhell/nodes/comment.py

+ 1
- 1
mwparserfromhell/nodes/comment.py Visa fil

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

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

@property
def contents(self):


Laddar…
Avbryt
Spara