fix string catenation

This commit is contained in:
rw
2015-05-13 10:50:47 -07:00
parent 48dfc69ee6
commit 2746aabcf1

View File

@@ -1290,13 +1290,13 @@ def main():
import os import os
import sys import sys
if not len(sys.argv) == 4: if not len(sys.argv) == 4:
sys.stderr.write(('Usage: %s <benchmark vtable count>') sys.stderr.write('Usage: %s <benchmark vtable count>'
('<benchmark read count> <benchmark build count>') '<benchmark read count> <benchmark build count>\n'
('\n' % sys.argv[0])) % sys.argv[0])
sys.stderr.write((' Provide COMPARE_GENERATED_TO_GO=1 to check') sys.stderr.write(' Provide COMPARE_GENERATED_TO_GO=1 to check'
('for bytewise comparison to Go data.\n')) 'for bytewise comparison to Go data.\n')
sys.stderr.write((' Provide COMPARE_GENERATED_TO_JAVA=1 to check') sys.stderr.write(' Provide COMPARE_GENERATED_TO_JAVA=1 to check'
('for bytewise comparison to Java data.\n')) 'for bytewise comparison to Java data.\n')
sys.stderr.flush() sys.stderr.flush()
sys.exit(1) sys.exit(1)