From 16359a0f6cef98adf4da1dcd4a402fbdb6751e5d Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Wed, 23 Apr 2008 14:19:00 -0400 Subject: Apply unicode changes to webui also --- scripts/index.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/index.py') diff --git a/scripts/index.py b/scripts/index.py index 281e36e..8d10129 100755 --- a/scripts/index.py +++ b/scripts/index.py @@ -122,8 +122,8 @@ def handler(req): content = func( "Invalid Mode: \"%s\"" % mode ) # apache.log_error("%s:%s ... %s" % (my_user, my_uri, str(form))) - req.content_type = "text/html" - req.write(content) + req.content_type = "text/html;charset=utf-8" + req.write(unicode(content).encode('utf-8')) return apache.OK -- cgit