added version info to the page

This commit is contained in:
Mark McIntyre 2019-04-18 09:30:32 -04:00
parent 06c8d91073
commit 81ced8af50

View File

@ -20,7 +20,7 @@ class SimpleHandler(http.server.BaseHTTPRequestHandler):
self.send_response(200)
self.send_header('Content-type', 'text/html')
self.end_headers()
self.wfile.write(b"<html><body><h1>Hello, World!</h1></body></html>")
self.wfile.write(b"<html><body><h1>Hello, World!</h1><p>1.0.0</p></body></html>")
return
class SockHandler(socketserver.BaseRequestHandler):