summaryrefslogtreecommitdiffstats
path: root/bin/repoman
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-06-16 10:58:51 -0700
committerZac Medico <zmedico@gentoo.org>2010-06-16 10:58:51 -0700
commit898ac8623145589b4043957d75fdb41151b31b97 (patch)
tree968864505986f11fafc516fa3dd2ab9e6da1e5b6 /bin/repoman
parent707e125fe323f698430ea23bc8361f4d7290f4b7 (diff)
downloadportage-898ac8623145589b4043957d75fdb41151b31b97.tar.gz
portage-898ac8623145589b4043957d75fdb41151b31b97.tar.bz2
portage-898ac8623145589b4043957d75fdb41151b31b97.zip
Show unevaluated atoms when displaying unsatisfied deps.
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman3
1 files changed, 2 insertions, 1 deletions
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