Author: holger
Date: 2014-09-17 14:35:22 +0000 (Wed, 17 Sep 2014)
New Revision: 28868

Modified:
   bin/tracker_service.py
Log:
When it's unknown whether a vulnerability is remotely exploitable, display a 
singe question mark, to be visually more different from yes+no than a triple 
one...

Modified: bin/tracker_service.py
===================================================================
--- bin/tracker_service.py      2014-09-17 14:29:06 UTC (rev 28867)
+++ bin/tracker_service.py      2014-09-17 14:35:22 UTC (rev 28868)
@@ -657,7 +657,7 @@
                         pkg_name = "%s (%s)" % (pkg_name, archive)
 
                 if remote is None:
-                    remote = '???'
+                    remote = '?'
                 elif remote:
                     remote = 'yes'
                 else:
@@ -713,7 +713,7 @@
                         pkg_name = "%s (%s)" % (pkg_name, archive)
 
                 if remote is None:
-                    remote = '???'
+                    remote = '?'
                 elif remote:
                     remote = 'yes'
                 else:
@@ -774,7 +774,7 @@
                         pkg_name = self.make_xref(url, pkg_name)
 
                 if remote is None:
-                    remote = '???'
+                    remote = '?'
                 elif remote:
                     remote = 'yes'
                 else:
@@ -858,7 +858,7 @@
                         pkg_name = self.make_source_package_ref(url, pkg_name)
 
                 if remote is None:
-                    remote = '???'
+                    remote = '?'
                 elif remote:
                     remote = 'yes'
                 else:


_______________________________________________
Secure-testing-commits mailing list
Secure-testing-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/secure-testing-commits

Reply via email to