Compare commits

...

2 Commits

Author SHA1 Message Date
2cdd08928d added version information 2019-04-18 09:32:04 -04:00
65db8b071d changed the message to test deployment 2019-04-09 09:56:32 -04:00

View File

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