From 8e9b6dfba308ba8447a0f0fb7eabacfacb9661b3 Mon Sep 17 00:00:00 2001 From: Erik Johnson Date: Mon, 4 Apr 2016 13:24:10 -0500 Subject: [PATCH] Remove leading newline from exception logging The new log formatting makes this unnecessary. --- i3pystatus/core/threading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3pystatus/core/threading.py b/i3pystatus/core/threading.py index c4ff0a5..1e3d8bb 100644 --- a/i3pystatus/core/threading.py +++ b/i3pystatus/core/threading.py @@ -67,7 +67,7 @@ class ExceptionWrapper(Wrapper): try: self.workload() except: - message = "\n> Exception in {thread} at {time}, module {name}".format( + message = "Exception in {thread} at {time}, module {name}".format( thread=threading.current_thread().name, time=time.strftime("%c"), name=self.workload.__class__.__name__