mirror of
https://github.com/monero-project/gitian.sigs.git
synced 2024-12-23 19:49:25 +00:00
Merge pull request #38 from jonathancross/fix_verify_merge
verify-merge.py : fix error in sys.stderr.write
This commit is contained in:
commit
a4062edb68
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue