Skip to content

Commit 8535f06

Browse files
committed
Fix python style.
1 parent 8d48e13 commit 8535f06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/sql/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def deco(*a, **kw):
4646
except py4j.protocol.Py4JJavaError as e:
4747
s = e.java_exception.toString()
4848
stackTrace = '\n\t at '.join(map(lambda x: x.toString(),
49-
e.java_exception.getStackTrace()))
49+
e.java_exception.getStackTrace()))
5050
if s.startswith('org.apache.spark.sql.AnalysisException: '):
5151
raise AnalysisException(s.split(': ', 1)[1], stackTrace)
5252
if s.startswith('java.lang.IllegalArgumentException: '):

0 commit comments

Comments
 (0)