From 8202ad17aaaa836d88b9925554f648419dcb24da Mon Sep 17 00:00:00 2001 From: Dodji Seketeli Date: Tue, 24 Jan 2017 00:31:03 +0100 Subject: [PATCH] Add missing new line to an error message of runtestfedabipkgdiff.py This patch is a quick one liner to add a missing new line to an error message from the runtestfedabipkgdiff.py test harness. * tests/runtestfedabipkgdiff.py.in (run_fedabipkgdiff_tests): Add missing new line to an error message. Signed-off-by: Dodji Seketeli --- tests/runtestfedabipkgdiff.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtestfedabipkgdiff.py.in b/tests/runtestfedabipkgdiff.py.in index 9777415f..15676a1e 100755 --- a/tests/runtestfedabipkgdiff.py.in +++ b/tests/runtestfedabipkgdiff.py.in @@ -131,7 +131,7 @@ def run_fedabipkgdiff_tests(): subprocess.call(cmd, stdout=out_file) if not os.path.exists(reference_report_path): - sys.stderr.write('file not found: ' + reference_report_path) + sys.stderr.write('file not found: ' + reference_report_path + '\n') return_code = -1 else: diffcmd = ['diff', '-u', reference_report_path, output_path]