summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pym/gentoolkit/glsa/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/gentoolkit/glsa/__init__.py b/pym/gentoolkit/glsa/__init__.py
index 9e5a83f..a9eb30b 100644
--- a/pym/gentoolkit/glsa/__init__.py
+++ b/pym/gentoolkit/glsa/__init__.py
@@ -634,8 +634,8 @@ class Glsa:
for k in self.packages.keys():
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"] == "*":