summaryrefslogtreecommitdiffstats
path: root/pym/portage/sets/security.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/sets/security.py')
-rw-r--r--pym/portage/sets/security.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/sets/security.py b/pym/portage/sets/security.py
index b53326990..a172e6f8c 100644
--- a/pym/portage/sets/security.py
+++ b/pym/portage/sets/security.py
@@ -40,7 +40,7 @@ class SecuritySet(PackageSet):
myglsa = glsa.Glsa(glsaid, self._settings, self._vardbapi, self._portdbapi)
#print glsaid, myglsa.isVulnerable(), myglsa.isApplied(), myglsa.getMergeList()
if self.useGlsa(myglsa):
- atomlist += myglsa.getMergeList(least_change=self._least_change)
+ atomlist += ["="+x for x in myglsa.getMergeList(least_change=self._least_change)]
self._setAtoms(atomlist)
def useGlsa(self, myglsa):