Skip to content

Commit 45f4977

Browse files
fix line too long style error
1 parent 5745d85 commit 45f4977

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/pyspark/rdd.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,8 @@ def pipe_objs(out):
707707
result = (x.rstrip(b'\n').decode('utf-8') for x in iter(pipe.stdout.readline, b''))
708708
pipe.wait()
709709
if pipe.returncode:
710-
raise Exception("Pipe function `%s' exited with error code %d" %(command, pipe.returncode))
710+
raise Exception("Pipe function `%s' exited"
711+
"with error code %d" %(command, pipe.returncode))
711712
return result
712713
return self.mapPartitions(func)
713714

0 commit comments

Comments
 (0)