From 22b1acd32a44c477548108daa2f1328499b98556 Mon Sep 17 00:00:00 2001 From: Andrew Or Date: Tue, 26 Aug 2014 20:52:47 -0700 Subject: [PATCH] Fix style again (minor) --- python/pyspark/java_gateway.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyspark/java_gateway.py b/python/pyspark/java_gateway.py index 19c2cb85aeb2e..afcc4118bcb0e 100644 --- a/python/pyspark/java_gateway.py +++ b/python/pyspark/java_gateway.py @@ -83,7 +83,7 @@ def preexec_func(): # JVMs. Instead, we use "taskkill" with the tree-kill option "/t" to terminate all # child processes. def killChild(): - Popen(["cmd", "/c", "taskkill", "/f", "/t", "/pid", str(proc.pid)]) + Popen(["cmd", "/c", "taskkill", "/f", "/t", "/pid", str(proc.pid)]) atexit.register(killChild) # Create a thread to echo output from the GatewayServer, which is required