[kernel-sec-discuss] r4153 - scripts

Ben Hutchings benh at moszumanska.debian.org
Fri Feb 12 21:09:14 UTC 2016


Author: benh
Date: 2016-02-12 21:09:14 +0000 (Fri, 12 Feb 2016)
New Revision: 4153

Modified:
   scripts/filter-active.py
Log:
filter-active: Show "unknown" instead of blank status


Modified: scripts/filter-active.py
===================================================================
--- scripts/filter-active.py	2016-02-12 21:05:33 UTC (rev 4152)
+++ scripts/filter-active.py	2016-02-12 21:09:14 UTC (rev 4153)
@@ -109,5 +109,5 @@
         issues = filter_out_states(issues, options.release, options.notstates)
 
     for i in issues:
-        sys.stdout.write("  %s: %s\n" % (i.name, i.status(options.release)))
-            
+        sys.stdout.write("  %s: %s\n" % (i.name,
+                                         i.status(options.release) or "unknown"))




More information about the kernel-sec-discuss mailing list