Closed MichaelAquilina closed 10 years ago
goose/parsers.py lines 51 -59
@classmethod def fromstring(self, html): html = encodeValue(html) if type(html) == unicode: self.doc = lxml.html.fromstring(html.encode('utf8')) else: self.doc = lxml.html.fromstring(html) return self.doc
goose/parsers.py lines 51 -59