From: Zac Medico Date: Sun, 22 Aug 2010 18:28:45 +0000 (-0700) Subject: Fix erroneoud reference to self.aux_get in bintree.move_ent(). X-Git-Tag: v2.2_rc68~24 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=25070b30cfb8fcd4383318998b0a7853e5569d52;p=portage.git Fix erroneoud reference to self.aux_get in bintree.move_ent(). --- diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py index 5d152452b..9b1535e49 100644 --- a/pym/portage/dbapi/bintree.py +++ b/pym/portage/dbapi/bintree.py @@ -293,7 +293,8 @@ class binarytree(object): # Ignore PROVIDE virtual match. continue if repo_match is not None \ - and not repo_match(self.aux_get(mycpv, ['repository'])[0]): + and not repo_match(self.dbapi.aux_get(mycpv, + ['repository'])[0]): continue mynewcpv = mycpv.replace(mycpv_cp, str(newcp), 1) myoldpkg = catsplit(mycpv)[1]