From: Zac Medico Date: Thu, 25 Oct 2007 17:01:32 +0000 (-0000) Subject: Correct expected split counts for CONTENTS lines. X-Git-Tag: v2.2_pre1~513 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a9280f6611d265ebfd9bd0c58e3076f441e9165b;p=portage.git Correct expected split counts for CONTENTS lines. svn path=/main/trunk/; revision=8294 --- diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 209cebe4c..912614615 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -825,9 +825,9 @@ class dblink(object): import re _normalize_needed = re.compile(r'.*//.*|^[^/]|.+/$|(^|.*/)\.\.?(/.*|$)') _contents_split_counts = { - "dev": 1, - "dir": 1, - "fif": 1, + "dev": 2, + "dir": 2, + "fif": 2, "obj": 4, "sym": 5 }