remove dependency on Six
diff --git a/lib/nodejs/examples/httpServer.py b/lib/nodejs/examples/httpServer.py
index 76e9f4a..bf3ef14 100644
--- a/lib/nodejs/examples/httpServer.py
+++ b/lib/nodejs/examples/httpServer.py
@@ -16,5 +16,5 @@
 protoFactory = TJSONProtocol.TJSONProtocolFactory()
 port = 9090
 server = THttpServer.THttpServer(processor, ("localhost", port), protoFactory)
-print "Python server running on port " + str(port)
+print("Python server running on port " + str(port))
 server.serve()