From: Ondrej Lichtner olichtne@redhat.com
Removing the tab between the result success and the result source to achieve a nicer spacing.
Signed-off-by: Ondrej Lichtner olichtne@redhat.com --- lnst/Controller/RunSummaryFormatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lnst/Controller/RunSummaryFormatter.py b/lnst/Controller/RunSummaryFormatter.py index a5d505e..a90efe4 100644 --- a/lnst/Controller/RunSummaryFormatter.py +++ b/lnst/Controller/RunSummaryFormatter.py @@ -102,7 +102,7 @@ class RunSummaryFormatter(object): except IndexError: pass
- output_lines.append("{res}\t{src}\t{desc}".format( + output_lines.append("{res} {src}\t{desc}".format( res = self._format_success(res.success), src = self._format_source(res), desc = res.short_desc))