Remove stray space in log string

This commit is contained in:
Matt Prahl
2016-09-21 13:45:32 +02:00
committed by Nils Philippsen
parent 183166ab9c
commit 180b376ee2

View File

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