Browse Source

make printStack* assertable

Darren Ranalli 19 years ago
parent
commit
f6e614c9d6
1 changed files with 2 additions and 0 deletions
  1. 2 0
      direct/src/showbase/PythonUtil.py

+ 2 - 0
direct/src/showbase/PythonUtil.py

@@ -145,8 +145,10 @@ class StackTrace:
 
 def printStack():
     print StackTrace(start=1).compact()
+    return True
 def printVerboseStack():
     print StackTrace(start=1)
+    return True
 
 #-----------------------------------------------------------------------------