commit: 9a506b4d7429a589416eee48d02ca7ed42ef1898
Author: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 10 00:48:59 2014 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Tue Jan 17 17:42:51 2017 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=9a506b4d
glsa: Separate "Vulnerable" and "Unaffected" by comma/space
pym/portage/glsa.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pym/portage/glsa.py b/pym/portage/glsa.py
index 1b19fb1..5e6662d 100644
--- a/pym/portage/glsa.py
+++ b/pym/portage/glsa.py
@@ -617,8 +617,8 @@ class Glsa:
for k in self.packages:
pkg = self.packages[k]
for path in pkg:
- vul_vers = "".join(path["vul_vers"])
- unaff_vers = "".join(path["unaff_vers"])
+ vul_vers = ", ".join(path["vul_vers"])
+ unaff_vers = ",
".join(path["unaff_vers"])
outstream.write(_("Affected package:
%s\n") % k)
outstream.write(_("Affected archs:
"))
if path["arch"] == "*":