From 202bca8be11f13f5e8f97acce77fa13eb7d777a1 Mon Sep 17 00:00:00 2001 From: Fini Jastrow Date: Sat, 28 Jan 2023 15:26:34 +0100 Subject: [PATCH] font-patcher: Fix empty lines output [why] When --quiet and --no-progressbar is given we get a lot of empty lines in the output. [how] Just output the carriage return when we have output som eunterminated stuff before. Signed-off-by: Fini Jastrow --- font-patcher | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/font-patcher b/font-patcher index c226095e1..94b40318d 100755 --- a/font-patcher +++ b/font-patcher @@ -1305,7 +1305,7 @@ class font_patcher: # end for - if not self.args.quiet or self.args.progressbars: + if not self.args.quiet: sys.stdout.write("\n")