From: Zac Medico Date: Mon, 9 Jun 2008 23:25:29 +0000 (-0000) Subject: Fix missing initialization. X-Git-Tag: v2.2_pre8~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6ab1a5b5c2d46e4e589631b4db2a4948008c6e23;p=portage.git Fix missing initialization. svn path=/main/trunk/; revision=10626 --- 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)