From 45f4977fc8bf1971abc85b264a0ff4bae794abce Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 4 Jun 2015 09:53:16 +0100 Subject: [PATCH] fix line too long style error --- python/pyspark/rdd.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/pyspark/rdd.py b/python/pyspark/rdd.py index 5ff11de71112d..2b38289a1356f 100644 --- a/python/pyspark/rdd.py +++ b/python/pyspark/rdd.py @@ -707,7 +707,8 @@ def pipe_objs(out): result = (x.rstrip(b'\n').decode('utf-8') for x in iter(pipe.stdout.readline, b'')) pipe.wait() if pipe.returncode: - raise Exception("Pipe function `%s' exited with error code %d" %(command, pipe.returncode)) + raise Exception("Pipe function `%s' exited" + "with error code %d" %(command, pipe.returncode)) return result return self.mapPartitions(func)