From: Zac Medico Date: Tue, 2 Mar 2010 21:09:18 +0000 (-0000) Subject: Fix broken fakedbapi.cpv_inject/cpv_remove calls. (trunk r15493) X-Git-Tag: v2.1.8~29 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0e6324c8ddf8a1a8d1160092d57bb64a1f2935a8;p=portage.git Fix broken fakedbapi.cpv_inject/cpv_remove calls. (trunk r15493) svn path=/main/branches/2.1.7/; revision=15694 --- diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py index e4f3e60fc..cdc702e41 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: