From ff7dcda2a743384ad76635622c687aa63973e468 2024-06-04 23:03:39 From: Stephen Macke Date: 2024-06-04 23:03:39 Subject: [PATCH] bufix for call to structured_traceback --- diff --git a/IPython/core/interactiveshell.py b/IPython/core/interactiveshell.py index 86eb719..f0b25a1 100644 --- a/IPython/core/interactiveshell.py +++ b/IPython/core/interactiveshell.py @@ -2033,7 +2033,7 @@ class InteractiveShell(SingletonConfigurable): print(self.InteractiveTB.stb2text(stb)) print("The original exception:") stb = self.InteractiveTB.structured_traceback( - (etype,value,tb), tb_offset=tb_offset + etype, value, tb, tb_offset=tb_offset ) return stb