From 07687dfb97c20dbb80948cc059029165b3689df3 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Mon, 3 Jun 2019 19:59:25 +0300 Subject: [PATCH] Improve printing of the results --- kconfig-hardened-check.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kconfig-hardened-check.py b/kconfig-hardened-check.py index b1dd5eb..26afc40 100755 --- a/kconfig-hardened-check.py +++ b/kconfig-hardened-check.py @@ -343,21 +343,21 @@ def construct_checklist(arch): def print_checklist(arch): print('[+] Printing kernel hardening preferences for {}...'.format(arch)) - print(' {:<39}|{:^13}|{:^10}|{:^20}'.format( + print('{:^40}|{:^13}|{:^10}|{:^20}'.format( 'option name', 'desired val', 'decision', 'reason')) - print(' ' + '=' * 86) + print('=' * 87) for opt in checklist: - print(' CONFIG_{:<32}|{:^13}|{:^10}|{:^20}'.format( + print('CONFIG_{:<33}|{:^13}|{:^10}|{:^20}'.format( opt.name, opt.expected, opt.decision, opt.reason)) print() def print_check_results(): - print(' {:<39}|{:^13}|{:^10}|{:^20}||{:^28}'.format( + print('{:^40}|{:^13}|{:^10}|{:^20}||{:^28}'.format( 'option name', 'desired val', 'decision', 'reason', 'check result')) - print(' ' + '=' * 115) + print('=' * 116) for opt in checklist: - print(' CONFIG_{:<32}|{:^13}|{:^10}|{:^20}||{:^28}'.format( + print('CONFIG_{:<33}|{:^13}|{:^10}|{:^20}||{:^28}'.format( opt.name, opt.expected, opt.decision, opt.reason, opt.result)) print() -- 2.31.1