From 180b376ee2c05803821e491388624ece56bcae2d Mon Sep 17 00:00:00 2001 From: Matt Prahl Date: Sep 21 2016 11:48:22 +0000 Subject: Remove stray space in log string --- diff --git a/rida/scheduler/main.py b/rida/scheduler/main.py index a9e8bce..caa87a7 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)