Improve the table header
authorAlexander Popov <alex.popov@linux.com>
Fri, 6 Mar 2020 21:31:50 +0000 (00:31 +0300)
committerAlexander Popov <alex.popov@linux.com>
Fri, 6 Mar 2020 21:31:50 +0000 (00:31 +0300)
kconfig-hardened-check.py

index 4f01f5793468a1d4dd440117b9552d3baef9c171..85445b5d2c977a9bd0d163137d26df2edc157499 100755 (executable)
@@ -444,14 +444,15 @@ def print_checklist(checklist, with_results):
         print(json.dumps(opts))
         return
 
-    # header
-    print('{:^45}|{:^13}|{:^10}|{:^20}'.format('option name', 'desired val', 'decision', 'reason'), end='')
+    # table header
     sep_line_len = 91
     if with_results:
-        print('|   {}'.format('check result'), end='')
         sep_line_len += 30
+    print('=' * sep_line_len)
+    print('{:^45}|{:^13}|{:^10}|{:^20}'.format('option name', 'desired val', 'decision', 'reason'), end='')
+    if with_results:
+        print('|   {}'.format('check result'), end='')
     print()
-
     print('=' * sep_line_len)
 
     for opt in checklist: