git ssb

0+

Monero Pub / gitian.sigs



Commit 47e05f92886ccbe7815b3348a06ef5a89d661fd8

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

Jonathan Cross committed on 11/26/2019, 6:32:50 AM
Parent: 9c951d47715c2d33a398e2238db3ef561bb97502

Files changed

verify-merge.pychanged
verify-merge.pyView
@@ -58,9 +58,9 @@
5858 # The OSX SDK may change from time to time:
5959 if 'sdk' in assert_file_contents[i]:
6060 continue
6161 if assert_file_contents[i] != first_file_contents[i]:
62- sys.stderr.write('ERROR: Found conflicting contents on line:', i)
62+ sys.stderr.write('ERROR: Found conflicting contents on line: ' + str(i) + ' of file ')
6363 sys.stderr.write(assert_file + ':\n' + assert_file_contents[i])
6464 sys.stderr.write(first_file + ':\n' + first_file_contents[i])
6565 exit(1)
6666

Built with git-ssb-web