projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
905f387
)
Validate resume list data some more. (trunk r10094)
author
Zac Medico
<zmedico@gentoo.org>
Fri, 2 May 2008 18:28:56 +0000
(18:28 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Fri, 2 May 2008 18:28:56 +0000
(18:28 -0000)
svn path=/main/branches/2.1.2/; revision=10095
bin/emerge
patch
|
blob
|
history
diff --git
a/bin/emerge
b/bin/emerge
index 8e307c5e96b2c16aabb188b202bccbd75e7b032a..28bdbee1d695310567472d4f66a74cf3f2f97596 100755
(executable)
--- a/
bin/emerge
+++ b/
bin/emerge
@@
-4917,7
+4917,7
@@
class depgraph(object):
trees = self.trees
serialized_tasks = []
for x in mergelist:
- if
len(x) != 4
:
+ if
not (isinstance(x, list) and len(x) == 4)
:
continue
pkg_type, myroot, pkg_key, action = x
if pkg_type not in self.pkg_tree_map: