changed the message to test deployment

This commit is contained in:
Mark McIntyre 2019-04-09 09:56:32 -04:00
parent 06c8d91073
commit 65db8b071d

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