summaryrefslogtreecommitdiff
path: root/controller.py
diff options
context:
space:
mode:
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)