diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-07-01 05:22:57 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-07-01 05:22:57 +0000 |
commit | 28fbecadc0b0fce93df1cc7f7c7b5bf2e4b8fc73 (patch) | |
tree | 459e4433a0b78af3e34dbd7807ca2d68d3554fee | |
parent | 140b80e7c94a72e3904d7cf28f22f062703b6fa3 (diff) | |
download | portage-28fbecadc0b0fce93df1cc7f7c7b5bf2e4b8fc73.tar.gz portage-28fbecadc0b0fce93df1cc7f7c7b5bf2e4b8fc73.tar.bz2 portage-28fbecadc0b0fce93df1cc7f7c7b5bf2e4b8fc73.zip |
add a call to pruneNonExisting() at the end of dbapi.vartree.PreservedLibsRegistry.__init__()
svn path=/main/trunk/; revision=10862
-rw-r--r-- | pym/portage/dbapi/vartree.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 38fa50c4a..cd1e1ddca 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -46,7 +46,8 @@ class PreservedLibsRegistry(object): self._filename = filename self._autocommit = autocommit self.load() - + self.pruneNonExisting() + def load(self): """ Reload the registry data from file """ try: |