diff options
-rw-r--r-- | pym/portage/dbapi/bintree.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py index b7fa1ba65..198e0b5ab 100644 --- a/pym/portage/dbapi/bintree.py +++ b/pym/portage/dbapi/bintree.py @@ -88,15 +88,10 @@ class bindbapi(fakedbapi): self.bintree.populate() return fakedbapi.cp_list(self, *pargs, **kwargs) - def cpv_all(self): + def cp_all(self): if not self.bintree.populated: self.bintree.populate() - return fakedbapi.cpv_all(self) - - def move_slot_ent(self, mylist): - if not self.bintree.populated: - self.bintree.populate() - return fakedbapi.move_slot_ent(self, mylist) + return fakedbapi.cp_all(self) class binarytree(object): "this tree scans for a list of all packages available in PKGDIR" |