Index: branches/mk/cheesecake/cheesecake_index.py =================================================================== --- branches/mk/cheesecake/cheesecake_index.py (revision 44) +++ branches/mk/cheesecake/cheesecake_index.py (revision 57) @@ -25,5 +25,5 @@ from math import ceil -from _util import pad_with_dots, pad_left_spaces, pad_msg, pad_line +from _util import pad_with_dots, pad_left_spaces, pad_right_spaces, pad_msg, pad_line from _util import run_cmd, command_successful from _util import unzip_package, untar_package @@ -326,7 +326,5 @@ def _print_info_one(self): - print "%s%s (%s)" % (pad_with_dots(self.name), - pad_left_spaces(self.value), - self.details) + print "%s (%s)" % (pad_msg(self.name, self.value), self.details) def _print_info_many(self): @@ -340,5 +338,5 @@ print pad_msg("%s INDEX (ABSOLUTE)" % self.name, self.value) msg = pad_msg("%s INDEX (RELATIVE)" % self.name, percentage) - msg += " (%d out of a maximum of %d points is %d%%)" %\ + msg += " (%d out of a maximum of %d points is %d%%)" %\ (self.value, max_value, percentage) @@ -1144,5 +1142,5 @@ print pad_line("=") print pad_msg("OVERALL CHEESECAKE INDEX (ABSOLUTE)", cheesecake_index) - print "%s (%d out of a maximum of %d points is %d%%)" % \ + print "%s (%d out of a maximum of %d points is %d%%)" % \ (pad_msg("OVERALL CHEESECAKE INDEX (RELATIVE)", percentage), cheesecake_index,