verify-merge.py : fix error in sys.stderr.write

This commit is contained in:
Jonathan Cross 2019-11-25 17:00:45 +01:00
parent 9c951d4771
commit 47e05f9288
No known key found for this signature in database
GPG key ID: D8578DF8EA7CCF1B

View file

@ -59,7 +59,7 @@ def verify():
if 'sdk' in assert_file_contents[i]:
continue
if assert_file_contents[i] != first_file_contents[i]:
sys.stderr.write('ERROR: Found conflicting contents on line:', i)
sys.stderr.write('ERROR: Found conflicting contents on line: ' + str(i) + ' of file ')
sys.stderr.write(assert_file + ':\n' + assert_file_contents[i])
sys.stderr.write(first_file + ':\n' + first_file_contents[i])
exit(1)