[Secure-testing-commits] r43988 - bin

Chris Lamb lamby at moszumanska.debian.org
Tue Aug 16 11:13:50 UTC 2016


Author: lamby
Date: 2016-08-16 11:13:50 +0000 (Tue, 16 Aug 2016)
New Revision: 43988

Modified:
   bin/lts-cve-triage.py
Log:
bin/lts-cve-triage.py: Use more newlines to make it easier for humans to parse.

Modified: bin/lts-cve-triage.py
===================================================================
--- bin/lts-cve-triage.py	2016-08-16 09:16:58 UTC (rev 43987)
+++ bin/lts-cve-triage.py	2016-08-16 11:13:50 UTC (rev 43988)
@@ -117,9 +117,9 @@
         continue
     if not len(lists[key]):
         continue
-    print('{}:'.format(desc))
+    print('\n{}:'.format(desc))
     for pkg in sorted(lists[key].keys()):
         cve_list = ' '.join(
             [i.name for i in sorted(lists[key][pkg], key=lambda i: i.name)])
-        print('* {:20s} -> {}'.format(pkg, cve_list))
+        print('\n* {:20s}\n  {}'.format(pkg, cve_list))
     print('')




More information about the Secure-testing-commits mailing list