From 6f8aa9c15a2f610bd015d2715c9c8de4d54ff043 Mon Sep 17 00:00:00 2001 From: prsha85 <43792712+prsha85@users.noreply.github.com> Date: Tue, 2 Oct 2018 14:16:56 -0400 Subject: [PATCH] Update hello-world.py --- hello-world.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello-world.py b/hello-world.py index 328dfb3..3350043 100755 --- a/hello-world.py +++ b/hello-world.py @@ -10,7 +10,7 @@ def do_GET(self): self.send_header("Content-type", "text/html") self.end_headers() self.wfile.write(bytes("
Hello World!
", "utf-8")) + self.wfile.write(bytes("Hello World By Praveen !
", "utf-8")) self.wfile.write(bytes("", "utf-8")) myServer = HTTPServer((hostName, hostPort), MyServer)