From 335b96c85ed0b1382f864e890dc2384a52993258 Mon Sep 17 00:00:00 2001 From: Morten Delenk Date: Tue, 12 Apr 2016 19:52:18 +0200 Subject: [PATCH] shebang was missing --- index.py | 1 + 1 file changed, 1 insertion(+) diff --git a/index.py b/index.py index 6e65204..a0dc3dd 100755 --- a/index.py +++ b/index.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 from htmlgen import * print("Content-type: text/html\r\n\r\n") html=htmlgen.HTMLgen(pagelayout.getLayoutXML().decode('utf-8'),"Home Page")