Source
def comment(self):
ret = []
for comment in self._comment:
com = '<!--' + comment + '-->'
ret.append(com)
return ' '.join(ret)
returns the comment.
def comment(self):
ret = []
for comment in self._comment:
com = '<!--' + comment + '-->'
ret.append(com)
return ' '.join(ret)