Fix getExitStackTrace call

It was changed
This commit is contained in:
Sebastian Spaeth 2011-10-27 17:45:00 +02:00
parent d992c66156
commit 7c45e05428

View File

@ -411,7 +411,7 @@ class UIBase(object):
def getThreadExceptionString(self, thread):
message = "Thread '%s' terminated with exception:\n%s" % \
(thread.getName(), thread.getExitStackTrace())
(thread.getName(), thread.exit_stacktrace)
message += "\n" + self.getThreadDebugLog(thread)
return message