summaryrefslogtreecommitdiff
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-02-28 06:24:00 +0000
committerZac Medico <zmedico@gentoo.org>2010-02-28 06:24:00 +0000
commit32f03e51d1597a5ddb38d6e71d8b2b7a75862bdb (patch)
treeafbe539ce08d5b55eedf253e6b70859114f3293f /pym
parentMove legacy globals code into a _legacy_globals module that's imported on (diff)
downloadportage-multirepo-32f03e51d1597a5ddb38d6e71d8b2b7a75862bdb.tar.gz
portage-multirepo-32f03e51d1597a5ddb38d6e71d8b2b7a75862bdb.tar.bz2
portage-multirepo-32f03e51d1597a5ddb38d6e71d8b2b7a75862bdb.zip
Fix broken fakedbapi.cpv_inject/cpv_remove calls.
svn path=/main/trunk/; revision=15493
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dbapi/bintree.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py
index e4f3e60f..cdc702e4 100644
--- a/pym/portage/dbapi/bintree.py
+++ b/pym/portage/dbapi/bintree.py
@@ -67,11 +67,11 @@ class bindbapi(fakedbapi):
def cpv_inject(self, cpv, **kwargs):
self._aux_cache.pop(cpv, None)
- fakedbapi.cpv_inject(cpv, **kwargs)
+ fakedbapi.cpv_inject(self, cpv, **kwargs)
def cpv_remove(self, cpv):
self._aux_cache.pop(cpv, None)
- fakedbapi.cpv_remove(cpv)
+ fakedbapi.cpv_remove(self, cpv)
def aux_get(self, mycpv, wants):
if self.bintree and not self.bintree.populated: