# HG changeset patch # User Pawel Solyga # Date 1246834488 -7200 # Node ID b7f14c803619e5ebc0ae308c0a117b8ada5a9251 # Parent e3245267266652c52bb49bc36954c40d3866538e Fix HtmlSanitizer to return cleaned string in proper encoding. This fix prevent HtmlSanitizer from throwing UnicodeDecodeError exception. diff -r e32452672666 -r b7f14c803619 app/htmlsanitizer/HtmlSanitizer.py --- a/app/htmlsanitizer/HtmlSanitizer.py Mon Jul 06 00:31:48 2009 +0200 +++ b/app/htmlsanitizer/HtmlSanitizer.py Mon Jul 06 00:54:48 2009 +0200 @@ -203,7 +203,7 @@ if len(string) and self.settings['auto_clean'] : self.clean() def get_string(self): - return unicode(self.root.renderContents()) + return self.root.renderContents().decode('utf-8') string = property(get_string, set_string)