git ssb

0+

Monero Pub / gitian.sigs



Commit a4062edb68b9546c9612d3ef42694f77e0ff24ff

Merge pull request #38 from jonathancross/fix_verify_merge

verify-merge.py : fix error in sys.stderr.write
Reproducibility Matters authored on 12/3/2019, 11:49:18 AM
GitHub committed on 12/3/2019, 11:49:18 AM
Parent: 9c951d47715c2d33a398e2238db3ef561bb97502
Parent: 47e05f92886ccbe7815b3348a06ef5a89d661fd8

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