This is an automated email from the ASF dual-hosted git repository.

gurwls223 pushed a commit to branch branch-2.2
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-2.2 by this push:
     new 6966502  [SPARK-25253][PYSPARK][FOLLOWUP] Undefined name: from 
pyspark.util import _exception_message
6966502 is described below

commit 69665026812fa54e87a5a8592c4140d6eb12f55a
Author: cclauss <ccla...@bluewin.ch>
AuthorDate: Thu Aug 30 08:13:11 2018 +0800

    [SPARK-25253][PYSPARK][FOLLOWUP] Undefined name: from pyspark.util import 
_exception_message
    
    HyukjinKwon
    
    ## What changes were proposed in this pull request?
    
    add __from pyspark.util import \_exception_message__ to 
python/pyspark/java_gateway.py
    
    ## How was this patch tested?
    
    [flake8](http://flake8.pycqa.org) testing of 
https://github.com/apache/spark on Python 3.7.0
    
    $ __flake8 . --count --select=E901,E999,F821,F822,F823 --show-source 
--statistics__
    ```
    ./python/pyspark/java_gateway.py:172:20: F821 undefined name 
'_exception_message'
                emsg = _exception_message(e)
                       ^
    1     F821 undefined name '_exception_message'
    1
    ```
    
    Please review http://spark.apache.org/contributing.html before opening a 
pull request.
    
    Closes #22265 from cclauss/patch-2.
    
    Authored-by: cclauss <ccla...@bluewin.ch>
    Signed-off-by: hyukjinkwon <gurwls...@apache.org>
---
 python/pyspark/java_gateway.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/python/pyspark/java_gateway.py b/python/pyspark/java_gateway.py
index 191dfce..4e3ad73 100644
--- a/python/pyspark/java_gateway.py
+++ b/python/pyspark/java_gateway.py
@@ -34,6 +34,7 @@ if sys.version >= '3':
 from py4j.java_gateway import java_import, JavaGateway, GatewayParameters
 from pyspark.find_spark_home import _find_spark_home
 from pyspark.serializers import read_int, write_with_length, UTF8Deserializer
+from pyspark.util import _exception_message
 
 
 def launch_gateway(conf=None):


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to