From: Zac Medico Date: Fri, 24 Jun 2011 10:28:31 +0000 (-0700) Subject: repoman: fix broken set constructor usage X-Git-Tag: v2.2.0_alpha42~33 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0bd3f9cba502cbef281bae8721a2fcc3d52a0a8a;p=portage.git repoman: fix broken set constructor usage --- diff --git a/bin/repoman b/bin/repoman index 6145c8995..0e3820fae 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1958,7 +1958,8 @@ for x in scanlist: prof, repr(atoms))) if not baddepsyntax and unknown_pkgs: - all_unknown = set(*unknown_pkgs.values()) + all_unknown = set() + all_unknown.update(*unknown_pkgs.values()) type_map = {} for mytype, atom in all_unknown: type_map.setdefault(mytype, set()).add(atom)