From: Zac Medico Date: Wed, 16 Jun 2010 17:58:51 +0000 (-0700) Subject: Show unevaluated atoms when displaying unsatisfied deps. X-Git-Tag: v2.2_rc68~546 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=898ac8623145589b4043957d75fdb41151b31b97;p=portage.git Show unevaluated atoms when displaying unsatisfied deps. --- diff --git a/bin/repoman b/bin/repoman index be1125a34..324ad2ea2 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1889,7 +1889,8 @@ for x in scanlist: if atoms: #we have some unsolvable deps #remove ! deps, which always show up as unsatisfiable - atoms = [str(atom) for atom in atoms if not atom.blocker] + atoms = [str(atom.unevaluated_atom) \ + for atom in atoms if not atom.blocker] #if we emptied out our list, continue: if not atoms: continue