summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-07-03 21:53:37 +0000
committerZac Medico <zmedico@gentoo.org>2008-07-03 21:53:37 +0000
commitafc84a36ff6f3d14ddbbf99f1f901108ed033f49 (patch)
tree20780066d78d70faf98edd799f4c9893187e73f6 /pym
parentda4c1e25f54e4da4b2c5c80b5568a0c8c45cae50 (diff)
downloadportage-afc84a36ff6f3d14ddbbf99f1f901108ed033f49.tar.gz
portage-afc84a36ff6f3d14ddbbf99f1f901108ed033f49.tar.bz2
portage-afc84a36ff6f3d14ddbbf99f1f901108ed033f49.zip
Fix typo.
svn path=/main/trunk/; revision=10916
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dbapi/vartree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index f2761d63f..091a04081 100644
--- a/pym/portage/dbapi/vartree.py
+++ b/pym/portage/dbapi/vartree.py
@@ -53,7 +53,7 @@ class PreservedLibsRegistry(object):
try:
self._data = cPickle.load(open(self._filename, "r"))
except (EOFError, IOError), e:
- if isintance(e, EOFError) or e.errno == errno.ENOENT:
+ if isinstance(e, EOFError) or e.errno == errno.ENOENT:
self._data = {}
elif e.errno == PermissionDenied.errno:
raise PermissionDenied(self._filename)