From 14e4b832f259f40bdc52d4a2891748fa5a8126af Mon Sep 17 00:00:00 2001 From: rofl0r Date: Sun, 6 Jan 2019 16:29:17 +0000 Subject: [PATCH] proxywatchd: dont delete timestamp when printing halt msg --- proxywatchd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxywatchd.py b/proxywatchd.py index a24e734..b0363e3 100644 --- a/proxywatchd.py +++ b/proxywatchd.py @@ -140,7 +140,7 @@ class WorkerThread(): class Proxywatchd(): def stop(self): - _log('\rRequesting proxywatchd to halt (%d thread(s))' % len([item for item in self.threads if True])) + _log('Requesting proxywatchd to halt (%d thread(s))' % len([item for item in self.threads if True])) self.stopping.set() def _cleanup(self):