Skip to content

Commit 0974f98

Browse files
add space between words in multiline string
1 parent 45f4977 commit 0974f98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/rdd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ 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"
710+
raise Exception("Pipe function `%s' exited "
711711
"with error code %d" %(command, pipe.returncode))
712712
return result
713713
return self.mapPartitions(func)

0 commit comments

Comments
 (0)