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

pull/38/head
Jonathan Cross 5 years ago
parent 9c951d4771
commit 47e05f9288
No known key found for this signature in database
GPG Key ID: D8578DF8EA7CCF1B

@ -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)

Loading…
Cancel
Save