Skip to content

Commit

Permalink
fix missing space around operator style
Browse files Browse the repository at this point in the history
This is an error in PEP8 but not in pylint.
  • Loading branch information
megatron-me-uk committed Jun 4, 2015
1 parent 0974f98 commit 1b3dc4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyspark/rdd.py
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ def pipe_objs(out):
pipe.wait()
if pipe.returncode:
raise Exception("Pipe function `%s' exited "
"with error code %d" %(command, pipe.returncode))
"with error code %d" % (command, pipe.returncode))
return result
return self.mapPartitions(func)

Expand Down

0 comments on commit 1b3dc4e

Please sign in to comment.