projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e849abd
)
Correct expected split counts for CONTENTS lines.
author
Zac Medico
<zmedico@gentoo.org>
Thu, 25 Oct 2007 17:01:32 +0000
(17:01 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Thu, 25 Oct 2007 17:01:32 +0000
(17:01 -0000)
svn path=/main/trunk/; revision=8294
pym/portage/dbapi/vartree.py
patch
|
blob
|
history
diff --git
a/pym/portage/dbapi/vartree.py
b/pym/portage/dbapi/vartree.py
index 209cebe4c7c9737f655e138805f662b3033ff252..9126146156c457f001945b0dcafe2ba4b4a99612 100644
(file)
--- 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
}