From 7c45e05428e6e6a9437c2f3dc6597e19e864b111 Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Thu, 27 Oct 2011 17:45:00 +0200 Subject: [PATCH] Fix getExitStackTrace call It was changed --- offlineimap/ui/UIBase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/offlineimap/ui/UIBase.py b/offlineimap/ui/UIBase.py index 9f5f4bc..44c920f 100644 --- a/offlineimap/ui/UIBase.py +++ b/offlineimap/ui/UIBase.py @@ -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