Skip to content

Commit c1421d0

Browse files
hauntsaninjaHyukjinKwon
authored andcommitted
[MINOR][PYTHON] Fix spacing in error message
### What changes were proposed in this pull request? Fixes spacing in an error message ### Why are the changes needed? Makes error messages easier to read ### Does this PR introduce _any_ user-facing change? Yes, it changes the error message ### How was this patch tested? This patch doesn't affect any logic, so existing tests should cover it Closes #29264 from hauntsaninja/patch-1. Authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Signed-off-by: HyukjinKwon <gurwls223@apache.org> (cherry picked from commit 77f2ca6) Signed-off-by: HyukjinKwon <gurwls223@apache.org>
1 parent 62671af commit c1421d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/pyspark/worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def main(infile, outfile):
261261
version = utf8_deserializer.loads(infile)
262262
if version != "%d.%d" % sys.version_info[:2]:
263263
raise Exception(("Python in worker has different version %s than that in " +
264-
"driver %s, PySpark cannot run with different minor versions." +
264+
"driver %s, PySpark cannot run with different minor versions. " +
265265
"Please check environment variables PYSPARK_PYTHON and " +
266266
"PYSPARK_DRIVER_PYTHON are correctly set.") %
267267
("%d.%d" % sys.version_info[:2], version))

0 commit comments

Comments
 (0)