From 6cf3110653670eec481cef8cf77ea9b29e4ddf46 Mon Sep 17 00:00:00 2001 From: Darren Ranalli Date: Mon, 13 Nov 2006 22:22:48 +0000 Subject: [PATCH] added note about StackTrace not being a crash --- direct/src/showbase/PythonUtil.py | 1 + 1 file changed, 1 insertion(+) diff --git a/direct/src/showbase/PythonUtil.py b/direct/src/showbase/PythonUtil.py index bee5ec16d1..b59b82778a 100644 --- a/direct/src/showbase/PythonUtil.py +++ b/direct/src/showbase/PythonUtil.py @@ -129,6 +129,7 @@ class StackTrace: self.label, len(self.trace),) for i in traceback.format_list(self.trace): r+=i + r+="***** NOTE: This is not a crash. This is a debug stack trace. *****" return r #-----------------------------------------------------------------------------