summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-08-22 11:28:45 -0700
committerZac Medico <zmedico@gentoo.org>2010-08-22 11:28:45 -0700
commit25070b30cfb8fcd4383318998b0a7853e5569d52 (patch)
treefccecfeda29e1ffbdd387479a1141896e87f15c7
parent7f01f7f6741d7621a7d7d9368f2b7de306b4135c (diff)
downloadportage-25070b30cfb8fcd4383318998b0a7853e5569d52.tar.gz
portage-25070b30cfb8fcd4383318998b0a7853e5569d52.tar.bz2
portage-25070b30cfb8fcd4383318998b0a7853e5569d52.zip
Fix erroneoud reference to self.aux_get in bintree.move_ent().
-rw-r--r--pym/portage/dbapi/bintree.py3
1 files changed, 2 insertions, 1 deletions
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]