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>
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]