mirror of
https://github.com/monero-project/gitian.sigs.git
synced 2025-01-22 17:34:30 +00:00
verify-merge.py : fix error in sys.stderr.write
This commit is contained in:
parent
9c951d4771
commit
47e05f9288
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ def verify():
|
||||||
if 'sdk' in assert_file_contents[i]:
|
if 'sdk' in assert_file_contents[i]:
|
||||||
continue
|
continue
|
||||||
if assert_file_contents[i] != first_file_contents[i]:
|
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(assert_file + ':\n' + assert_file_contents[i])
|
||||||
sys.stderr.write(first_file + ':\n' + first_file_contents[i])
|
sys.stderr.write(first_file + ':\n' + first_file_contents[i])
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
Loading…
Reference in a new issue