From 180b376ee2c05803821e491388624ece56bcae2d Mon Sep 17 00:00:00 2001 From: Matt Prahl Date: Wed, 21 Sep 2016 13:45:32 +0200 Subject: [PATCH] Remove stray space in log string --- rida/scheduler/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rida/scheduler/main.py b/rida/scheduler/main.py index a9e8bce3..caa87a72 100644 --- a/rida/scheduler/main.py +++ b/rida/scheduler/main.py @@ -163,7 +163,7 @@ class MessageWorker(threading.Thread): if handler is self.NO_OP: log.debug("Handler is NO_OP: %s" % idx) else: - log.info("Calling %s" % idx) + log.info("Calling %s" % idx) handler(conf, db.session, msg) log.info("Done with %s" % idx)