Adjust the output format
authorAlexander Popov <alex.popov@linux.com>
Tue, 24 Jul 2018 21:30:21 +0000 (00:30 +0300)
committerAlexander Popov <alex.popov@linux.com>
Tue, 24 Jul 2018 21:30:21 +0000 (00:30 +0300)
kconfig-hardened-check.py

index 0b32dfbcd6b8d4ec130c6745ef6ad0ba73c57070..8d1ecdf4fbeeb09caedea11f48ee08dc82161dad 100755 (executable)
@@ -210,10 +210,10 @@ def print_opt_checks():
 
 
 def print_check_results():
-    print('  {:<39}|{:^13}|{:^10}|{:^20}||{:^20}'.format('option name', 'desired val', 'decision', 'reason', 'check result'))
-    print('  ===========================================================================================================')
+    print('  {:<39}|{:^13}|{:^10}|{:^20}||{:^28}'.format('option name', 'desired val', 'decision', 'reason', 'check result'))
+    print('  ===================================================================================================================')
     for opt in checklist:
-        print('  CONFIG_{:<32}|{:^13}|{:^10}|{:^20}||{:^20}'.format(opt.name, opt.expected, opt.decision, opt.reason, opt.result))
+        print('  CONFIG_{:<32}|{:^13}|{:^10}|{:^20}||{:^28}'.format(opt.name, opt.expected, opt.decision, opt.reason, opt.result))
     print()