Selaa lähdekoodia

Bugfix.

tags/v0.1.1
Ben Kurtovic 11 vuotta sitten
vanhempi
commit
5f7566c09e
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      mwparserfromhell/nodes/comment.py

+ 1
- 1
mwparserfromhell/nodes/comment.py Näytä tiedosto

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

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

@property
def contents(self):


Ladataan…
Peruuta
Tallenna