Skip to content

Commit 4334557

Browse files
committed
style
1 parent 757cf2f commit 4334557

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/sql/streaming.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def exception(self):
182182
"""
183183
if self._jsq.exception().isDefined():
184184
je = self._jsq.exception().get()
185-
msg = je.toString().split(': ', 1)[1] # Drop the Java StreamingQueryException type info
185+
msg = je.toString().split(': ', 1)[1] # Drop the Java StreamingQueryException type info
186186
stackTrace = '\n\t at '.join(map(lambda x: x.toString(), je.getStackTrace()))
187187
return StreamingQueryException(msg, stackTrace)
188188
else:

0 commit comments

Comments
 (0)