From: zmedico Date: Sat, 21 Feb 2009 01:59:02 +0000 (-0000) Subject: Inside summarylist(), it's possible for myglsa.packages.keys() to contain X-Git-Tag: gentoolkit-0.2.4.3^2~8 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=bc020c31c30d84e15954a26b7066cfdae7ff3064;p=gentoolkit.git Inside summarylist(), it's possible for myglsa.packages.keys() to contain unicode objects, which trigger and exception like this: File "//usr/lib64/portage/pym/portage/dep.py", line 535, in __init__ obj_setattr(self, x, getattr(s, x)) AttributeError: 'unicode' object has no attribute '__eq__' To solve this problem, convert unicode objects to plain str before passing them to the portage api. Thanks to Ned Ludd for reporting. svn path=/; revision=548 --- diff --git a/trunk/src/glsa-check/glsa-check b/trunk/src/glsa-check/glsa-check index 7d3931a..efb9e91 100755 --- a/trunk/src/glsa-check/glsa-check +++ b/trunk/src/glsa-check/glsa-check @@ -222,7 +222,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 + " ")