summaryrefslogtreecommitdiff
path: root/controller.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2011-02-15 01:16:18 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2011-02-15 01:16:18 +0100
commit6040154bde912222528cd84b0d8bec7bc60bb65a (patch)
tree90441a1d48ca6e05fd99df053a7e0cce4dfce806 /controller.py
parent0efc1162f77bcea770f72dbe8db1caafa8090e66 (diff)
downloadweb-6040154bde912222528cd84b0d8bec7bc60bb65a.tar.gz
web-6040154bde912222528cd84b0d8bec7bc60bb65a.tar.bz2
web-6040154bde912222528cd84b0d8bec7bc60bb65a.zip
More of this w3c stuff
Diffstat (limited to 'controller.py')
-rw-r--r--controller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller.py b/controller.py
index 894cd42..f24b435 100644
--- a/controller.py
+++ b/controller.py
@@ -9,7 +9,7 @@ class Page:
All the general and simple pages.
"""
def GET(self, name = '/'):
- web.header("Content-Type", "application/xhtml+xml;;charset=utf-8", unique = True)
+ web.header("Content-Type", "text/html;charset=utf-8", unique = True)
if not name or name == '/': name = 'index'
return render(name)