ui/debuglock.py Removed extra backslashes

These backslashes could be removed.
This commit is contained in:
Rodolfo García Peñas (kix) 2020-08-30 17:47:18 +02:00
parent cfce5c8500
commit 7634ce10d1

View File

@ -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())))