Skip to content

Commit 9df485a

Browse files
committed
python: Show line number when an exception occurs
1 parent 52dc176 commit 9df485a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

redash/query_runner/python.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import importlib
33
import logging
44
import sys
5+
import traceback
56

67
from RestrictedPython import compile_restricted
78
from RestrictedPython.Guards import (
@@ -360,7 +361,14 @@ def run_query(self, query, user):
360361
self.validate_result(data)
361362
data["log"] = self._custom_print.lines
362363
except Exception as e:
363-
error = str(type(e)) + " " + str(e)
364+
_, _, tb = sys.exc_info()
365+
frames = traceback.extract_tb(tb)
366+
# We want the "deepest" frame that is in the query code (indicated by '<string>')
367+
# This is to avoid exceptions raised by modules the query imported.
368+
query_frames = [frame for frame in frames if frame.filename == '<string>']
369+
line_number = query_frames[-1].lineno
370+
371+
error = f"{type(e)} \"{e}\" (line {line_number})"
364372
data = None
365373

366374
return data, error

0 commit comments

Comments
 (0)