From: Zac Medico Date: Fri, 23 Sep 2011 19:52:58 +0000 (-0700) Subject: Fix cp_list mytree argument for match-all. X-Git-Tag: v2.2.0_alpha60~32 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0666aa9e6c88cdeaf5806dda27e40eb96df9db86;p=portage.git Fix cp_list mytree argument for match-all. This is a regression from commit 3d07f74a2fb2e0480e126335f6981218f60da824. --- diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py index e3fe9a911..135412430 100644 --- a/pym/portage/dbapi/porttree.py +++ b/pym/portage/dbapi/porttree.py @@ -867,7 +867,7 @@ class portdbapi(dbapi): for tree in self.porttrees: repo = self.repositories.get_name_for_location(tree) myval.update(self._iter_match(mydep.with_repo(repo), - self.cp_list(mykey, mytree=mytree))) + self.cp_list(mykey, mytree=tree))) myval = list(myval) if len(myval) > 1: self._cpv_sort_ascending(myval)