From cb4fce76917bea04fc2614a63209725bed7da3b6 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sat, 5 Oct 2013 14:22:46 -0700 Subject: [PATCH] Added title HTML tags to the debug interface --- homeassistant/httpinterface.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/homeassistant/httpinterface.py b/homeassistant/httpinterface.py index aa66c1ab8bc..b349c269604 100644 --- a/homeassistant/httpinterface.py +++ b/homeassistant/httpinterface.py @@ -102,6 +102,8 @@ class RequestHandler(BaseHTTPRequestHandler): write("") + write("Home Assistant") + write("") # Flash message support if self.server.flash_message is not None: @@ -150,7 +152,7 @@ class RequestHandler(BaseHTTPRequestHandler): write("") write("") - write("") + write("") else: @@ -228,11 +230,13 @@ class RequestHandler(BaseHTTPRequestHandler): write = lambda txt: self.wfile.write(txt+"\n") write("") + write("Home Assistant") + write("") write("
") write("API password: ") write("") write("
") - write("") + write("") return False