Add missing new line to an error message of runtestfedabipkgdiff.py
authorDodji Seketeli <dodji@redhat.com>
Mon, 23 Jan 2017 23:31:03 +0000 (00:31 +0100)
committerDodji Seketeli <dodji@redhat.com>
Wed, 15 Feb 2017 14:49:39 +0000 (15:49 +0100)
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 <dodji@redhat.com>
tests/runtestfedabipkgdiff.py.in

index 9777415fabd85ce919e4a17184fcc6e31f974069..15676a1eb483f91e32270985a68913233a623e28 100755 (executable)
@@ -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]