From f4522160357f3680040573c6e56600606d080e62 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Mon, 13 May 2019 19:37:41 -0600 Subject: [PATCH] Adjusted CPU report --- .bin/Scripts/functions/hw_diags.py | 1 - 1 file changed, 1 deletion(-) diff --git a/.bin/Scripts/functions/hw_diags.py b/.bin/Scripts/functions/hw_diags.py index c2e42b8f..a70192d0 100644 --- a/.bin/Scripts/functions/hw_diags.py +++ b/.bin/Scripts/functions/hw_diags.py @@ -63,7 +63,6 @@ class CpuObj(): ram_details = get_ram_details() ram_total = human_readable_size(ram_details.pop('Total', 0)).strip() ram_dimms = ['{}x {}'.format(v, k) for k, v in sorted(ram_details.items())] - report.append(' ') report.append('{BLUE}RAM{CLEAR}'.format(**COLORS)) report.append(' {} ({})'.format(ram_total, ', '.join(ram_dimms)))