lib/http.py
changeset 25 8f143b1ce0d1
parent 14 b88d23696b98
child 42 5a72c00c4ae4
--- a/lib/http.py	Sat Feb 07 04:40:37 2009 +0200
+++ b/lib/http.py	Sat Feb 07 04:44:00 2009 +0200
@@ -94,7 +94,7 @@
         HTTP Response with headers and data
     """
 
-    def __init__ (self, data, content_type='text/html', status='200 OK', charset='utf8') :
+    def __init__ (self, data, content_type='text/html', status='200 OK', charset='UTF-8') :
         """
             Create the response. The Content-type header is built from the given values. The given \a data must be
             either a str (which is sent plain), an unicode object (which is encoded with the relevant charset), or