diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-06-09 23:25:29 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-06-09 23:25:29 +0000 |
commit | 6ab1a5b5c2d46e4e589631b4db2a4948008c6e23 (patch) | |
tree | 3b6dca0a568d1eef127d2b71dfcbffacc20bb512 | |
parent | b2d224da6d06966a79f9c747fb27ea02f9add896 (diff) | |
download | portage-6ab1a5b5c2d46e4e589631b4db2a4948008c6e23.tar.gz portage-6ab1a5b5c2d46e4e589631b4db2a4948008c6e23.tar.bz2 portage-6ab1a5b5c2d46e4e589631b4db2a4948008c6e23.zip |
Fix missing initialization.
svn path=/main/trunk/; revision=10626
-rw-r--r-- | pym/portage/dbapi/vartree.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index fd28a6705..12dbd5f14 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -588,6 +588,7 @@ class vardbapi(dbapi): return self._aux_cache_obj def _aux_cache_init(self): + aux_cache = None try: f = open(self._aux_cache_filename) mypickle = cPickle.Unpickler(f) |