diff options
-rw-r--r-- | bin/glsa-check | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/glsa-check b/bin/glsa-check index b7b9b47d9..3c72f6a53 100644 --- a/bin/glsa-check +++ b/bin/glsa-check @@ -176,7 +176,7 @@ def summarylist(myglsalist, fd1=sys.stdout, fd2=sys.stderr): fd1.write("... ") else: for pkg in myglsa.packages.keys(): - mylist = vardb.match(portage.dep_getkey(pkg)) + mylist = vardb.match(portage.dep_getkey(str(pkg))) if len(mylist) > 0: pkg = color(" ".join(mylist)) fd1.write(" " + pkg + " ") |