From 54ec9528eceeefa6c0cf2e25e64f54b762d0d9c3 Mon Sep 17 00:00:00 2001 From: Morten Delenk Date: Tue, 12 Apr 2016 19:51:03 +0200 Subject: [PATCH] bugfix --- index.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.py b/index.py index cbc3811..6e65204 100755 --- a/index.py +++ b/index.py @@ -1,6 +1,5 @@ from htmlgen import * -print("Content-type: text/html") -print() +print("Content-type: text/html\r\n\r\n") html=htmlgen.HTMLgen(pagelayout.getLayoutXML().decode('utf-8'),"Home Page") html.addArticle("Markdown test","*Hello, World!*") print(html.renderSite())