From 6a6b01f1a175b14a64730a4112ca95dce8f51fb2 Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Mon, 9 Nov 2015 14:31:06 +0800 Subject: [PATCH] fix: replace rogue `print` statement by `self.ui.debug` Signed-off-by: Valentin Lab Signed-off-by: Nicolas Sebrecht --- offlineimap/init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/offlineimap/init.py b/offlineimap/init.py index 91e0f55..beb90de 100644 --- a/offlineimap/init.py +++ b/offlineimap/init.py @@ -299,7 +299,7 @@ class OfflineImap: stack_display.append(' => Stopped to handle current signal. ') stack_displays.append(stack_display) stacks = unique_count(stack_displays) - print("** Thread List:\n") + self.ui.debug('thread', "** Thread List:\n") for stack, times in stacks: if times == 1: msg = "%s Thread is at:\n%s\n"