From c56f94f9a173744fe2b981150159f416847a9fde Mon Sep 17 00:00:00 2001 From: Darren Ranalli Date: Wed, 19 Nov 2008 03:03:18 +0000 Subject: [PATCH] fixed missing variable dump --- direct/src/showbase/ExceptionVarDump.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/direct/src/showbase/ExceptionVarDump.py b/direct/src/showbase/ExceptionVarDump.py index 9fbfb44142..f488942cbb 100755 --- a/direct/src/showbase/ExceptionVarDump.py +++ b/direct/src/showbase/ExceptionVarDump.py @@ -78,7 +78,8 @@ def _excepthookDumpVars(eType, eValue, tb): s = 'DUMPING STACK FRAME VARIABLES' origTb = tb #import pdb;pdb.set_trace() - foundRun = False + #foundRun = False + foundRun = True while tb is not None: frame = tb.tb_frame code = frame.f_code