diff --git a/docs/source/tutorial/tutorial.advanced-topics.rst b/docs/source/tutorial/tutorial.advanced-topics.rst index 84487a9cb..1156979c8 100644 --- a/docs/source/tutorial/tutorial.advanced-topics.rst +++ b/docs/source/tutorial/tutorial.advanced-topics.rst @@ -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 -point → traceback. +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