summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-09-19 01:58:04 +0000
committerZac Medico <zmedico@gentoo.org>2006-09-19 01:58:04 +0000
commit8434ec1080b2b3ed696c0502f2258f6d19c746fb (patch)
tree9b54e5b24034cfd607c2955ed785a4fb5cc59d9b /pym
parent013c16b4eb1a55f1b1b92e640a296c0cefbe4e57 (diff)
downloadportage-8434ec1080b2b3ed696c0502f2258f6d19c746fb.tar.gz
portage-8434ec1080b2b3ed696c0502f2258f6d19c746fb.tar.bz2
portage-8434ec1080b2b3ed696c0502f2258f6d19c746fb.zip
Fix digraph.debug_print inverted hard/soft logic.
svn path=/main/trunk/; revision=4477
Diffstat (limited to 'pym')
-rw-r--r--pym/portage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 86c665114..967b9aec4 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -463,9 +463,9 @@ class digraph:
for child in self.nodes[node][0]:
print " ",child,
if self.nodes[node][0][child]:
- print "(hard)"
- else:
print "(soft)"
+ else:
+ print "(hard)"