added version information

This commit is contained in:
Mark McIntyre 2019-04-18 09:32:04 -04:00
parent 65db8b071d
commit 2cdd08928d

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>Automate all the things!</h1></body></html>")
self.wfile.write(b"<html><body><h1>Automate all the things!</h1><p>1.1.0</p></body></html>")
return
class SockHandler(socketserver.BaseRequestHandler):