From: Zac Medico Date: Thu, 25 Oct 2007 16:49:59 +0000 (-0000) Subject: Handle a potential IndexError. X-Git-Tag: v2.2_pre1~514 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e849abdb44fa7c4bdb56f6e16b71c0e41f460f80;p=portage.git Handle a potential IndexError. svn path=/main/trunk/; revision=8293 --- diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 18fc70096..209cebe4c 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -970,7 +970,9 @@ class dblink(object): noiselevel=-1) continue mydat = line.split() - correct_split_count = contents_split_counts.get(mydat[0]) + correct_split_count = None + if mydat: + correct_split_count = contents_split_counts.get(mydat[0]) if correct_split_count and len(mydat) != correct_split_count: if mydat[0] == "obj" and \ len(mydat) > contents_split_counts["obj"]: