diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-12-16 02:14:13 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-12-16 02:14:13 +0000 |
commit | 8f82569e0707ed478dd3705f5e37c4a9edab91f7 (patch) | |
tree | 4cd773a61ae30d8b425959fc3b882e334d6bff22 | |
parent | 25ded51d2804109347a3a6fa96ef44e4a7833df0 (diff) | |
download | portage-8f82569e0707ed478dd3705f5e37c4a9edab91f7.tar.gz portage-8f82569e0707ed478dd3705f5e37c4a9edab91f7.tar.bz2 portage-8f82569e0707ed478dd3705f5e37c4a9edab91f7.zip |
Make sure eapi is defined in order to prevent a NameError.
svn path=/main/trunk/; revision=5299
-rw-r--r-- | pym/portage.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pym/portage.py b/pym/portage.py index d2c81798f..53b0a2c8a 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -5683,6 +5683,7 @@ class portdbapi(dbapi): #we need to update this next line when we have fully integrated the new db api auxerr=0 keys = None + eapi = None aux_cache = self._gvisible_aux_cache.get(mycpv) if aux_cache is not None: keys, eapi = aux_cache |