From 7f6d1a5e14de9ede0609aceffff52a34c5fadde4 Mon Sep 17 00:00:00 2001 From: Steve Kuznetsov Date: Fri, 19 May 2017 16:34:15 -0700 Subject: [PATCH] Format package list more cleanly When building a large number of packages, the current output from tito will place all of them on one very long line, which makes it hard to read. Instead, we should place them on separate lines to format them more like a list. Signed-off-by: Steve Kuznetsov --- src/tito/builder/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tito/builder/main.py b/src/tito/builder/main.py index d9d8ba0..bb5abcd 100644 --- a/src/tito/builder/main.py +++ b/src/tito/builder/main.py @@ -290,7 +290,7 @@ class BuilderBase(object): self.artifacts.extend(files_written) print - info_out("Successfully built: %s" % ' '.join(files_written)) + info_out("Successfully built: %s" % '\n\t- '.join(files_written)) def _scl_to_rpmbuild_option(self): """ Returns rpmbuild option which disable or enable SC and print warning if needed """