aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-06-24 03:28:31 -0700
committerZac Medico <zmedico@gentoo.org>2011-06-24 03:28:31 -0700
commit0bd3f9cba502cbef281bae8721a2fcc3d52a0a8a (patch)
tree17d6808f78df6827bf37567ed1a65c6dafeddb02 /bin
parentrepoman: add new "dependency.unknown" warning (diff)
downloadportage-0bd3f9cba502cbef281bae8721a2fcc3d52a0a8a.tar.gz
portage-0bd3f9cba502cbef281bae8721a2fcc3d52a0a8a.tar.bz2
portage-0bd3f9cba502cbef281bae8721a2fcc3d52a0a8a.zip
repoman: fix broken set constructor usage
Diffstat (limited to 'bin')
-rwxr-xr-xbin/repoman3
1 files changed, 2 insertions, 1 deletions
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)