From: Fredrik Tolf Date: Thu, 19 Sep 2013 01:15:26 +0000 (+0200) Subject: Do Unicode conversion from bytestring more properly. X-Git-Url: http://dolda2000.com/gitweb/?p=wrw.git;a=commitdiff_plain;h=85ed5fa5dae0fe236584926824f7292b6e697e76 Do Unicode conversion from bytestring more properly. --- diff --git a/wrw/sp/cons.py b/wrw/sp/cons.py index 4052dce..ff0d0af 100644 --- a/wrw/sp/cons.py +++ b/wrw/sp/cons.py @@ -1,3 +1,4 @@ +import sys import xml.dom.minidom class node(object): @@ -39,9 +40,11 @@ class element(node): return self.__todom__(doc).toxml() class context(object): + charset = sys.getfilesystemencoding() + def __init__(self): self.nodeconv = {} - self.nodeconv[str] = lambda ob: text(ob, "utf-8") + self.nodeconv[str] = lambda ob: text(ob, self.charset) self.nodeconv[unicode] = text self.nodeconv[int] = text self.nodeconv[long] = text