From 7634ce10d1c082a054dc1a5ad0aee4fe1d6863ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolfo=20Garc=C3=ADa=20Pe=C3=B1as=20=28kix=29?= Date: Sun, 30 Aug 2020 17:47:18 +0200 Subject: [PATCH] ui/debuglock.py Removed extra backslashes These backslashes could be removed. --- offlineimap/ui/debuglock.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/offlineimap/ui/debuglock.py b/offlineimap/ui/debuglock.py index 4757453..7888806 100644 --- a/offlineimap/ui/debuglock.py +++ b/offlineimap/ui/debuglock.py @@ -44,6 +44,6 @@ class DebuggingLock: loglock.release() def print_tb(self, msg): - self.logmsg(".... %s: Thread %s attempting to %s\n" % \ - (self.name, currentThread().getName(), msg) + \ + self.logmsg(".... %s: Thread %s attempting to %s\n" % + (self.name, currentThread().getName(), msg) + "\n".join(traceback.format_list(traceback.extract_stack())))