From 5751222bd0ae4143675f41a4c913a4193db44f90 Mon Sep 17 00:00:00 2001 From: Anatoli Babenia Date: Fri, 29 Jul 2022 23:06:22 +0300 Subject: [PATCH] Remove extra line from the end of `osc dists` output --- osc/commandline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/commandline.py b/osc/commandline.py index 6e27bf32..80abf2a2 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -5364,7 +5364,7 @@ Please submit there instead, or use --nodevelproject to force direct submission. rows = [] for dist in dists: rows.append([dist[h] for h in headers]) - print(format_table(rows, headers)) + print(format_table(rows, headers).rstrip()) @cmdln.hide(1)