From b959d044eb2486a63dd618655fe14fa0b623e886 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Thu, 21 Jul 2016 09:23:21 -0400 Subject: [PATCH] Make this a little more readable. --- rida/builder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rida/builder.py b/rida/builder.py index 8a78fa51..0b310437 100644 --- a/rida/builder.py +++ b/rida/builder.py @@ -416,8 +416,8 @@ chmod 644 %buildroot/%_rpmconfigdir/macro.modules source = "%s/%s" % (serverdir, os.path.basename(source)) task_id = self.koji_session.build(source, self.module_target['name']) - log.info("%r submitted build of %s (task_id=%s)" % ( - self, source, task_id)) + log.info("submitted build of %s (task_id=%s), via %s" % ( + source, task_id, self)) return task_id def _get_tag(self, tag, strict=True):