From 9c2f681bc0ed498da5782212856343a776f7fe82 Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Thu, 12 Jul 2018 17:37:18 +0200 Subject: [PATCH] scripts: filter-known-issues: Add extra newline For better readability, add an extra newline when printing the result of filtering a log. Signed-off-by: Carles Cufi --- scripts/filter-known-issues.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/filter-known-issues.py b/scripts/filter-known-issues.py index 5551e27b802..7557777c20c 100755 --- a/scripts/filter-known-issues.py +++ b/scripts/filter-known-issues.py @@ -236,11 +236,11 @@ if warnings or errors: errors.flush() if ((os.path.isfile(args.warnings) and os.path.getsize(args.warnings) > 0) or (os.path.isfile(args.errors) and os.path.getsize(args.errors) > 0)): - print("\nNew errors/warnings found, please fix them:\n") + print("\n\nNew errors/warnings found, please fix them:\n") if args.warnings: print(open(args.warnings, "r").read()) if args.errors and (args.errors != args.warnings): print(open(args.errors, "r").read()) else: - print("\nNo new errors/warnings.\n") + print("\n\nNo new errors/warnings.\n")