Skip to content

Commit

Permalink
use that runner.tracebacks is a list of tuples
Browse files Browse the repository at this point in the history
  • Loading branch information
basnijholt committed Apr 17, 2020
1 parent 39d942a commit 33800c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/source/tutorial/tutorial.advanced-topics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -297,12 +297,12 @@ raise the exception with the stack trace:
runner.task.result()


You can also check ``runner.tracebacks`` which is a mapping from
pointtraceback.
You can also check ``runner.tracebacks`` which is a list of tuples with
(point, traceback).

.. jupyter-execute::

for point, tb in runner.tracebacks.items():
for point, tb in runner.tracebacks:
print(f'point: {point}:\n {tb}')

Logging runners
Expand Down

0 comments on commit 33800c8

Please sign in to comment.