From: Zac Medico Date: Sun, 8 Oct 2006 20:52:03 +0000 (-0000) Subject: Fix another bad package type assumption in depgraph.display(). X-Git-Tag: v2.1.2~685 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3bcdd8545ef1cf245353a3ef35be9ac38ccb0aa1;p=portage.git Fix another bad package type assumption in depgraph.display(). svn path=/main/trunk/; revision=4620 --- diff --git a/bin/emerge b/bin/emerge index f927ae3bf..c60cd35bb 100755 --- a/bin/emerge +++ b/bin/emerge @@ -1606,7 +1606,7 @@ class depgraph: print bad("(is blocking %s)") % block_parents else: mydbapi = self.trees[myroot][self.pkg_tree_map[pkg_type]].dbapi - if x[3] != "nomerge" and \ + if "ebuild" == pkg_type and x[3] != "nomerge" and \ "fetch" in portdb.aux_get( x[2], ["RESTRICT"])[0].split(): fetch = red("F")