add space to total result output in benchcompare script

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
Ivailo Monev 2019-07-12 11:47:51 +00:00
parent 39f551f44a
commit 7af0ed03d6

View file

@ -84,11 +84,11 @@ for ktag in katiemap:
qtotal += iqvalue
print(' %s%s: %d/%d (%s)' % (ktag, ' ' * tagalign, ikvalue, iqvalue, winner))
totalalign = (tagmax - 3)
totalalign = (tagmax - 4)
totalwinner = 'Katie'
if ktotal > qtotal:
totalwinner = 'Qt4'
print('')
print('*' * infomax)
print('Total%s: %d/%d (%s)' % (' ' * totalalign, ktotal, qtotal, totalwinner))
print(' Total%s: %d/%d (%s)' % (' ' * totalalign, ktotal, qtotal, totalwinner))
print('*' * infomax)