From: Zac Medico Date: Thu, 3 Jul 2008 21:53:37 +0000 (-0000) Subject: Fix typo. X-Git-Tag: v2.2_rc2~222 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=afc84a36ff6f3d14ddbbf99f1f901108ed033f49;p=portage.git Fix typo. svn path=/main/trunk/; revision=10916 --- 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)