diff options
Diffstat (limited to 'resources')
-rw-r--r-- | resources/tools/presentation/input_data_parser.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index 69731be9f4..2c248fb3af 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -1330,8 +1330,8 @@ class InputData(object): self._cfg.set_input_state(job, build_nr, result["state"]) - logging.info("Memory allocation: {0}kB".format( - resource.getrusage(resource.RUSAGE_SELF).ru_maxrss)) + logging.info("Memory allocation: {0:,d}MB".format( + resource.getrusage(resource.RUSAGE_SELF).ru_maxrss / 1000)) logging.info("Done.") |