added note about StackTrace not being a crash

This commit is contained in:
Darren Ranalli 2006-11-13 22:22:48 +00:00
parent 79f9e04e26
commit 6cf3110653

View File

@ -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
#-----------------------------------------------------------------------------