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)